Health check endpoints
Varmply Backend API (0.1.0)
Varmply API – MVP backend for campaigns, wallets, authentication, and influencer participation.
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/auth/register
- Local development serverhttp://localhost:3000/auth/register
- Staging environmenthttps://api-staging.varmply.com/auth/register
- Production environmenthttps://api.varmply.com/auth/register
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs-staging.varmply.com/_mock/openapi/auth/register \
-H 'Content-Type: application/json' \
-d '{
"emailAddress": "founder@example.com",
"password": "strongpassword123"
}'Response
application/json
{ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }
- Mock serverhttps://docs-staging.varmply.com/_mock/openapi/auth/login
- Local development serverhttp://localhost:3000/auth/login
- Staging environmenthttps://api-staging.varmply.com/auth/login
- Production environmenthttps://api.varmply.com/auth/login
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs-staging.varmply.com/_mock/openapi/auth/login \
-H 'Content-Type: application/json' \
-d '{
"emailAddress": "founder@example.com",
"password": "strongpassword123"
}'Response
application/json
{ "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." }