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 domain

GET
/domains/{id}
Returns details for a single domain including NS records and current Cloudflare status.

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
Domain details
Body

🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/domains/dom_abc123' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "success": true,
    "data": {
        "id": "dom_abc123",
        "domain": "yourdomain.com",
        "status": "ACTIVE",
        "ns1": "aspen.ns.cloudflare.com",
        "ns2": "kobe.ns.cloudflare.com",
        "batchNumber": 1,
        "batchId": "batch_abc123",
        "createdAt": "2026-03-01T10:00:00.000Z"
    }
}
Modified at 2026-03-12 08:23:25
Previous
List domains
Next
Remove domain
Built with