Skip to main content
GET
/
domain
/
List domains
curl --request GET \
  --url https://api-v2.missioninbox.com/domain/
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "created_at": "2023-12-25",
      "mailboxes": "<string>",
      "sent_emails": "<string>",
      "open_rate": "<string>",
      "reply_rate": "<string>",
      "bounce_rate": "<string>",
      "spam_complaints": "<string>",
      "status": "<string>",
      "health": "<string>",
      "redirect": "<string>",
      "redirect_pizza_id": "<string>"
    }
  ]
}

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

project_id
integer

Filter by project ID

relay_server_id
integer

Filter by relay server ID

Search by domain name or verification status

sort_by
string

Field to sort by

sort_order
string

Sort order: asc or desc

Response

count
integer
Example:

123

next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"

results
object[]