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/wallet/balance
- Local development serverhttp://localhost:3000/wallet/balance
- Staging environmenthttps://api-staging.varmply.com/wallet/balance
- Production environmenthttps://api.varmply.com/wallet/balance
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs-staging.varmply.com/_mock/openapi/wallet/balance?currency=NGN' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
{ "currency": "NGN", "balanceAmountCents": 0 }
- Mock serverhttps://docs-staging.varmply.com/_mock/openapi/wallet
- Local development serverhttp://localhost:3000/wallet
- Staging environmenthttps://api-staging.varmply.com/wallet
- Production environmenthttps://api.varmply.com/wallet
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs-staging.varmply.com/_mock/openapi/wallet \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"currencyCode": "NGN"
}'Response
application/json
{ "walletId": "wallet_abc123", "currency": "NGN", "balanceAmountCents": 0 }