API Reference
Get user plan
API Documentation
Endpoint Examples
API Reference
- GETList all assets
- POSTCreate a new asset
- GETGet details of a specific asset
- PUTRename an existing asset
- DELDelete an asset
- GETList all projects
- POSTCreate a new project
- GETGet details of a specific project
- PUTRename an existing project
- GETList transactions for a wallet
- POSTRun a new transaction between two wallets
- POSTSeed a new transaction to a system wallet
- GETGet user plan
- POSTCreate a new wallet
- GETList customer wallets
- PUTChange wallet status
- GETList system wallets
- GETGet wallet details
- POSTPost webhook
API Reference
Get user plan
GET
/
user
/
plan
curl --request GET \
--url http://localhost:4000/user/plan \
--header 'api_key: <api_key>'
{
"advanced_analytics": true,
"api_calls_per_day": 123,
"assets_per_project": 123,
"custom_branding": true,
"customer_wallets": 123,
"plan_code": "<string>",
"priority_support": true,
"projects": 123,
"subscription_code": "<string>",
"subscription_status": "<string>",
"system_wallets": 123,
"user_id": "<string>"
}
Headers
Response
200
application/json
Success response
The response is of type object
.
curl --request GET \
--url http://localhost:4000/user/plan \
--header 'api_key: <api_key>'
{
"advanced_analytics": true,
"api_calls_per_day": 123,
"assets_per_project": 123,
"custom_branding": true,
"customer_wallets": 123,
"plan_code": "<string>",
"priority_support": true,
"projects": 123,
"subscription_code": "<string>",
"subscription_status": "<string>",
"system_wallets": 123,
"user_id": "<string>"
}