Orders
Fetch your latest orders and their status.
Orders
GET /v3/orders
Query parameters
cURL
curl -X GET "https://plussuite.co/api/v3/orders?api_key=YOUR_PUBLIC_API_KEY" \
-H "Accept: application/json"Response (success)
{
"status": true,
"orders": [
{
"id": 101,
"service_id": 1,
"external_order_id": "ORD1234567890",
"link": "https://instagram.com/username",
"quantity": 500,
"start_count": 0,
"remains": 0,
"charge": 250.0,
"status": "completed",
"created_at": "2026-03-04T00:00:00Z"
},
{
"id": 102,
"service_id": 2,
"external_order_id": "ORD1234567891",
"link": "https://twitter.com/username/status/123",
"quantity": 1000,
"start_count": 500,
"remains": 500,
"charge": 100.0,
"status": "processing",
"created_at": "2026-03-04T00:05:00Z"
}
]
}Errors
Invalid public API key
Last updated
