ArgorantDocs

List inbox orders

gethttps://app.argorant.com/api/v1/inboxes/orders
GET
/api/v1/inboxes/orders

Every inbox order of your workspace, newest first, with its status (awaiting_payment, setting_up, aging, ready, attention, cancelled), domains and mailboxes.

Authorization

BearerAuth
AuthorizationBearer <token>

Your API key from app.argorant.com/profile, sent as Authorization: Bearer <key>.

In: header

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/inboxes/orders"
JSON
{  "orders": [    {      "order_id": "b345aa96-059d-47e7-b733-c1899f843a00",      "created_at": "2026-09-27T10:12:50+00:00",      "status": "aging",      "step": "aging",      "progress": 0.8333,      "next_step": null,      "currency": "usd",      "mailboxes": {        "created": 100,        "total": 100      },      "daily_capacity": 500,      "aging_ends_at": "2026-09-28T16:40:00+00:00",      "domains": [        {          "name": "getnorthgate.com",          "step": "inboxes_created",          "expires_at": "2027-09-27T10:31:00+00:00",          "first_year_cents": 1499,          "renewal_per_year_cents": 1499,          "auto_renew": null        }      ],      "renewal_per_year_cents": 4998,      "billing": null,      "included": [        "Warm-up is included in every plan. It stays off until you switch it on for a mailbox (10 a day)."      ]    }  ]}