Domaintico

Domaintico

Integrations

Use the APIs to power search, pricing, and transfers inside your pages.

Available endpoints

  • GET /api/domains/search?q=example.com
  • GET /api/domains/tlds?years=1
  • GET /api/pricing/table?tlds=.com,.net&years=1,2
  • GET /api/transfer/pricing?domain=example.com&check_availability=1
  • POST /api/cart/add (use setup_id)

All APIs run under the same domain/session so UTM attribution remains intact.

UI workflow

  1. Fetch results via /api/domains/search.
  2. Render requested_result + alternatives.
  3. On selection, call POST /api/cart/add with setup_id.
  4. Redirect to existing cart/checkout pages.

Example requests

curl -s "https://YOUR_DOMAIN/api/domains/search?q=example.com" -H "Accept: application/json"

curl -s "https://YOUR_DOMAIN/api/pricing/table?tlds=.com,.net&years=1,2" -H "Accept: application/json"

curl -s "https://YOUR_DOMAIN/api/transfer/pricing?domain=example.com&check_availability=1" -H "Accept: application/json"

Replace YOUR_DOMAIN with your website host.

FAQ