API Documentation
Integrate Trendak services directly into your own platform using our robust Reseller API (v2).
Introduction
Our API is a HTTP-based interface that allows you to manage services, place orders, and check balances programmatically.
HTTP POST
https://trendaak.com/api/v2
All requests must include your unique API Key which you can generate in your account settings.
User Balance
Fetch your current account balance and currency.
{
"key": "YOUR_API_KEY",
"action": "balance"
}
Service List
Retrieve a complete list of all available services including pricing and limits.
{
"key": "YOUR_API_KEY",
"action": "services"
}
Place New Order
Create a new order for a specific service.
{
"key": "YOUR_API_KEY",
"action": "add",
"service": 1,
"link": "https://instagram.com/p/123",
"quantity": 100
}
Check Order Status
Check the status of one or multiple orders.
{
"key": "YOUR_API_KEY",
"action": "status",
"order": 12345
}