ArgorantDocs

Get an inbox order

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

One order: status and setup step, each domain with its expiry date and yearly renewal price, mailboxes created of the total, when aging ends (new mailboxes send nothing for 24 hours), and billing with the next charge and the mailbox bundles (bundle_id for a cancel). An unpaid order has no step yet.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Path Parameters

order_id*string

Order id.

Response Body

application/json

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/inboxes/orders/b345aa96-059d-47e7-b733-c1899f843a00"
JSON
{  "order_id": "b345aa96-059d-47e7-b733-c1899f843a00",  "created_at": "2026-09-27T10:12:50+00:00",  "status": "ready",  "step": "ready",  "progress": 1,  "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": true    },    {      "name": "trynorthgate.co",      "step": "inboxes_created",      "expires_at": "2027-09-27T10:33:00+00:00",      "first_year_cents": 899,      "renewal_per_year_cents": 3499,      "auto_renew": true    }  ],  "renewal_per_year_cents": 4998,  "billing": {    "state": "active",    "next_charge_at": "2026-10-27T10:13:00+00:00",    "bundles": [      {        "bundle_id": "c1f0a3e2-7d4b-4a9e-8f21-6b3d5e7a9c10",        "domains": [          "getnorthgate.com",          "trynorthgate.co"        ],        "mailboxes": 100,        "status": "active",        "ends_at": null      }    ],    "can_cancel": true  },  "included": [    "New mailboxes age for 24 hours after setup; nothing sends in that time.",    "Each mailbox then sends up to 5 cold emails a day by default; you can change that per mailbox.",    "Warm-up is included in every plan. It stays off until you switch it on for a mailbox (10 a day)."  ]}