Reseller API
Standard SMM v2 contract: connect your panel and resell the whole catalog.
API details
- API URL
- https://crescavia.com/api/v2
- HTTP method
- POST
- Response format
- JSON
- Authentication
- The key parameter on every request
Your API key is generated from your account, in the API section of the panel. Create your free account or sign in.
Service list
- key
- Your API key
- action
- services
Example response:
[{"service": 5, "name": "TikTok Followers", "type": "Default", "category": "TikTok", "rate": "1.2600", "min": 10, "max": 40000, "refill": true, "cancel": false}]
Create order
- key
- Your API key
- action
- add
- service
- Service ID
- link
- Link to boost
- quantity
- Quantity
- runs / interval
- Optional, for drip-feed
Example response:
{"order": 123}
Order status
- key
- Your API key
- action
- status
- order
- Order ID, or orders=1,2,3 for several
Example response:
{"charge": "0.2750", "start_count": "100", "status": "In progress", "remains": "150", "currency": "USD"}
Create refill
- key
- Your API key
- action
- refill
- order
- Order ID, or orders=1,2,3 for several (up to 100)
Example response:
{"refill": 123}
Refill status
- key
- Your API key
- action
- refill_status
- refill
- Refill ID, or refills=1,2,3 for several (up to 100)
Example response:
{"status": "Pending"}
Cancel orders
- key
- Your API key
- action
- cancel
- orders
- Comma-separated IDs (up to 100)
Example response:
[{"order": 1, "cancel": 1}, {"order": 2, "cancel": {"error": "Incorrect order ID"}}]
Balance
- key
- Your API key
- action
- balance
Example response:
{"balance": "12.3400", "currency": "USD"}
Usage example
curl -X POST https://crescavia.com/api/v2 \ -d "key=TU_CLAVE" \ -d "action=add" \ -d "service=5" \ -d "link=https://tiktok.com/@usuario" \ -d "quantity=1000"