Orders

Fetch your latest orders and their status.

Orders

Auth and base URL details: see Welcome.

GET /v3/orders

Fetch your latest orders.

Returns up to the latest 50 orders.

Query parameters

  • api_key (string, required): public API key.

cURL

curl
curl -X GET "https://plussuite.co/api/v3/orders?api_key=YOUR_PUBLIC_API_KEY" \
  -H "Accept: application/json"

Response (success)

200 OK
{
  "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