Health check endpoints
Varmply Backend API (0.1.0)
Varmply API – MVP backend for campaigns, wallets, authentication, and influencer participation.
Common error codes: - NOT_FOUND - Resource not found (404) - VALIDATION_ERROR - Input validation failed (400) - PERMISSION_DENIED - User lacks permission (403) - CONFLICT - Resource conflict (409) - UNAUTHORIZED - Authentication required (401) - INTERNAL_SERVER_ERROR - Unexpected server error (500)
Download OpenAPI description
Languages
Servers
Mock server
https://docs-staging.varmply.com/_mock/openapi/
Local development server
http://localhost:3000/
Staging environment
https://api-staging.varmply.com/
Production environment
https://api.varmply.com/
- Mock serverhttps://docs-staging.varmply.com/_mock/openapi/sponsor/profile
- Local development serverhttp://localhost:3000/sponsor/profile
- Staging environmenthttps://api-staging.varmply.com/sponsor/profile
- Production environmenthttps://api.varmply.com/sponsor/profile
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://docs-staging.varmply.com/_mock/openapi/sponsor/profile \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"displayName": "My Brand",
"organizationName": "My Company Inc.",
"websiteUrl": "https://example.com",
"contactEmail": "contact@example.com"
}'Response
application/json
{ "sponsorProfile": { "id": "sponsor_profile_123", "displayName": "My Brand", "organizationName": "My Company Inc.", "websiteUrl": "https://example.com", "contactEmail": "contact@example.com" } }