Skip to main content
GET
/
domains
/
import
Finding a Cloudflare import by domain
curl --request GET \
  --url https://api.peeker.ai/partner/v1/domains/import \
  --header 'Authorization: Bearer <token>'
{ "data": { "domains": [ { "domain": "acme-mail.com", "status": "completed", "import_job_id": "imp_01HZX0IM1A2B3C4D5E6F7G8H", "nameserver_one": "helena.ns.cloudflare.com", "nameserver_two": "idris.ns.cloudflare.com" } ] } }

Authorizations

Authorization
string
header
default:Bearer pk_test_<your-test-key>
required

Your partner API key. Use pk_live_… against the live system or pk_test_… against the sandbox.

Query Parameters

domains
string
required

Comma-separated domains to look up. Up to 50 per request.

Example:

"acme-mail.com,other.com"

domain
string

Optional repeated domain parameter. domains is the canonical documented form.

Example:

"acme-mail.com"

include_group
boolean
default:false

Return the full matching nameserver group for each requested domain.

Example:

true

Response

200 - application/json

Import job and nameserver lookup by domain.

data
object
required
Last modified on June 16, 2026