Skip to main content
GET
/
domains
List domains
curl --request GET \
  --url https://app.strix.ai/api/v1/domains \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "domain": "<string>",
      "verified": true,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 123,
    "limit": 123,
    "total_items": 123,
    "total_pages": 123,
    "has_next": true,
    "has_prev": true
  }
}

Authorizations

Authorization
string
header
required

API token from Settings > API Access

Response

200 - application/json

List of domains

items
object[]
meta
object