POST
/
v1
/
domain
/
subdomain
/
search
curl --request POST \
  --url https://api.odin.io/v1/domain/subdomain/search \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "domain": "<string>",
  "keyword": "<string>",
  "limit": 123,
  "publishedAfter": "<string>",
  "publishedBefore": "<string>",
  "start": [
    {}
  ]
}'
{
  "data": [
    "<string>"
  ],
  "pagination": {
    "last": [
      {}
    ],
    "limit": 123,
    "start": [
      {}
    ],
    "total": 123
  }
}

Authorizations

X-API-Key
string
header
required

Body

application/json
Query

The body is of type object.

Response

200
application/json
OK

The response is of type object.