InboxedUp - API
  1. Domains
InboxedUp - API
  • Account
    • Get account overview
      GET
  • Subscriptions
    • List active subscriptions
      GET
    • Update subscription notes
      PATCH
  • Domains
    • Submit domains
      POST
    • List domains
      GET
    • Get domain
      GET
    • Remove domain
      DELETE
    • Verify domain NS propagation
      POST
    • Get batch status
      GET
  • Mailboxes
    • Request mailboxes
      POST
    • List mailbox requests
      GET
    • Get mailbox request
      GET
  • Schemas
    • Error
    • MailboxEntry
  1. Domains

Get batch status

GET
/domains/batch/{batchId}
Get the provisioning status of a domain batch, including per-domain NS records grouped by nameserver pair. Poll this endpoint to track when domains move from QUEUED → PENDING_NS → ACTIVE.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200
application/json
Batch status
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/domains/batch/' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "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"
                    }
                ]
            }
        ]
    }
}
Modified at 2026-03-12 08:23:30
Previous
Verify domain NS propagation
Next
Request mailboxes
Built with