v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List domains

Returns a list of all the active domains connected in your account

get/domains

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

Amount of items returned

Response

A list of domains connected to your account

idinteger required

The ID of the connected domain in Aikido.

domainstring required

The domain name.

kind'front_end' | 'rest_api' | 'graphql_api' | 'hosted' required

The kind of scan performed on the domain

is_auth_configuredboolean

Whether an authentication configuration is set up for the domain

last_scanned_atstring

Unix timestamp of the last time the domain was scanned

Example response

[
  {
    "id": 1,
    "domain": "https://www.aikido.dev",
    "kind": "front_end",
    "is_auth_configured": false,
    "last_scanned_at": 1777885020,
    "linked_resource": {
      "type": "code_repo",
      "id": 1
    }
  }
]