name.ai
Back to docs hub

Domain Search (DSN)

Real-time search of Name.ai Domain Syndication Network inventory. Surface premium aftermarket domains inside your own search box. Authenticate every call with HMAC headers. Results are scoped to your credential's sandbox or live environment, and only include inventory sellers have opted into the DSN.

GET /api/partner/v1/domains/search?q=wallet&limit=20&sort=price_asc

Scope: search. A query term is required — there is no "return everything" mode.

Query parameters

ParamRequiredNotes
qYesSearch term, min 2 characters. There is no bulk-export mode.
limitNoDefault 20, max 50.
tldNoFilter by TLD, e.g. com, ai.
minPrice / maxPriceNoPrice bounds in USD.
sortNoprice_asc (default), price_desc, name_asc.

Response (200)

{
  "query": "wallet",
  "count": 1,
  "limit": 20,
  "results": [
    {
      "domain": "neonwallet.io",
      "tld": "io",
      "bin_price": 125000,
      "currency": "USD",
      "offers_accepted": true
    }
  ]
}

Seller identity and internal fields are never returned. Names a seller has not opted into the DSN are not searchable.

Errors

HTTPcodeWhen
400invalid_queryq missing or fewer than 2 characters.
401invalid_signature / missing_signature_headers / invalid_timestamp / replay_detectedHMAC signing problem.
403forbidden / credential_not_active / partner_not_activeScope, credential, or account state.
429rate_limitedRate limit exceeded (Retry-After header).
name.ai