ArgorantDocs

Quote new inboxes

posthttps://app.argorant.com/api/v1/inboxes/quote
POST
/api/v1/inboxes/quote

Prices new mailboxes on their own new domains. Send mailboxes (rounded up to bundles of 100 on 2 domains) or daily_volume (cold emails a day, 5 per mailbox), plus the domains you want and/or a company (website or brand) to fill the missing names with free ones. currency is usd or eur, billing month or quarter (5% off the mailboxes). The quote lists every domain with availability, first-year and renewal price, the mailbox price, what is due today and what recurs, and holds for 24 hours. Nothing is ordered or charged.

Show the whole quote to the person who pays and order only after their explicit yes. Warm-up is part of every plan: switch it on per mailbox with PATCH /api/v1/inboxes/{email} and warmup: true.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

Shell
curl -X POST "https://app.argorant.com/api/v1/inboxes/quote" \  -H "Content-Type: application/json" \  -d '{    "mailboxes": 100,    "company": "northgate-advisory.com",    "domains": [],    "currency": "usd",    "billing": "month"  }'
JSON
{  "quote_id": "5b7e2d4a-1c3f-4e8a-9b6d-0a2c4e6f8b1d",  "expires_at": "2026-09-28T10:12:37+00:00",  "currency": "usd",  "plan": {    "mailboxes": 100,    "domains": 2,    "bundles": 1,    "mailboxes_per_domain": 50,    "cold_emails_per_mailbox_per_day": 5,    "daily_capacity": 500  },  "domains": [    {      "name": "getnorthgate.com",      "available": true,      "suggested": true,      "first_year_cents": 1499,      "renewal_per_year_cents": 1499    },    {      "name": "trynorthgate.co",      "available": true,      "suggested": true,      "first_year_cents": 899,      "renewal_per_year_cents": 3499    }  ],  "mailboxes": {    "quantity": 100,    "billing": "month",    "price_cents": 29000  },  "due_today_cents": 31398,  "recurring_cents": 29000,  "renewal_per_year_cents": 4998,  "summary": "100 mailboxes on 2 new domains. Due today 313.98 USD (the first month of mailboxes and each domain's first year), then 290.00 USD per month for the mailboxes; domains renew at 49.98 USD a year in total unless cancelled.",  "currency_rule": "Charged in the checkout currency. We buy domains in USD; a EUR checkout shows the same numbers for domains. Mailboxes have their own EUR price.",  "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)."  ],  "next_step": "Show this quote to the user in full and order only after their explicit yes: call POST /api/v1/inboxes/orders with quote_id, senders and confirmed=true.",  "can_order": true}