ArgorantDocs

Suggest domain names

gethttps://app.argorant.com/api/v1/inboxes/domains/suggest
GET
/api/v1/inboxes/domains/suggest

Free domain names for new sending mailboxes, made from your website or brand, each with its first-year and yearly renewal price in cents per currency. Checks availability only: nothing is reserved or charged.

Authorization

BearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

company*string

Your website or brand.

limit?integer

Names to return (default 20, max 60).

Response Body

application/json

application/json

Shell
curl -X GET "https://app.argorant.com/api/v1/inboxes/domains/suggest?company=northgate-advisory.com&limit=20"
JSON
{  "company": "northgate-advisory.com",  "results": [    {      "name": "getnorthgate.com",      "available": true,      "first_year": {        "usd": 1499,        "eur": 1499      },      "renewal": {        "usd": 1499,        "eur": 1499      }    },    {      "name": "northgatehq.com",      "available": false,      "first_year": {        "usd": 1499,        "eur": 1499      },      "renewal": {        "usd": 1499,        "eur": 1499      }    },    {      "name": "trynorthgate.co",      "available": true,      "first_year": {        "usd": 899,        "eur": 899      },      "renewal": {        "usd": 3499,        "eur": 3499      }    }  ]}