curl --location --request GET '/domains/batch/' \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"batchId": "batch_abc123",
"status": "PARTIAL",
"total": 10,
"queued": 0,
"pending_ns": 7,
"active": 3,
"failed": 0,
"groups": [
{
"ns1": "ajay.ns.cloudflare.com",
"ns2": "braelyn.ns.cloudflare.com",
"domains": [
{
"id": "dom_abc123",
"domain": "yourdomain.com",
"status": "PENDING_NS",
"createdAt": "2026-03-12T00:00:00.000Z"
},
{
"id": "dom_abc124",
"domain": "anotherdomain.com",
"status": "ACTIVE",
"createdAt": "2026-03-12T00:00:00.000Z"
}
]
}
]
}
}