Skip to content

API docs

Programmatic access to ranked drops and domain dossiers. Available on Pro ($19/mo, 100 req/day) and API ($49/mo, 10k req/day) tiers.

Authentication

Generate an API key on your /account page. Send it in the Authorization header:

curl https://namenotifier.com/api/v1/drops \ -H "Authorization: Bearer nn_xxxxxxxxxx"

GET /api/v1/drops

Returns today’s ranked drop list.

Query parameters

ParamExampleMeaning
tldcom,ioCSV of TLDs to filter
min_dqs70Minimum Domain Quality Score 0-100
max_len8Maximum SLD character length
qaiSubstring match on domain name
limit100Max rows returned (default 100, max 1000)

Response

{
  "date": "2026-04-14",
  "count": 50,
  "availableTlds": ["com","io","org"],
  "drops": [
    {
      "name": "aitools.io",
      "tld": "io",
      "length": 7,
      "dqs": 74,
      "explanation": "genuinely brandable and commercial ai intent, plus compact",
      "signals": { ... }
    }
  ]
}

GET /api/v1/domain/{name}

Full dossier for a single domain including feedback totals.

{
  "domain": "aitools.io",
  "tld": "io",
  "length": 7,
  "currentStatus": "available",
  "latestDrop": {
    "date": "2026-04-14",
    "dqs": 74,
    "explanation": "...",
    "signals": { ... }
  },
  "feedback": { "up": 12, "down": 1 }
}

Rate limits

Free: no API access. Pro: 100 requests/day. API tier: 10,000 requests/day. Rate limit is enforced per API key. Limits reset at 00:00 UTC.

Errors

All errors return JSON with an error field and appropriate HTTP status.

API docs - NameNotifier - NameNotifier