GET
/
targets
curl --request GET \
  --url https://kq5jp7qj7wdqklhsxmovkzn4l40obksv.lambda-url.eu-central-1.on.aws/targets \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "per_page": 1,
  "targets": [
    {
      "category": "<string>",
      "id": "<string>",
      "name": "<string>",
      "status": "<string>"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer

Page number to retrieve (defaults to 1)

Required range: x >= 0
per_page
integer

Number of items per page (defaults to 20, max 100)

Required range: x >= 0

Response

200 - application/json

Successfully retrieved target list

Paginated response containing a list of targets

This response structure supports pagination for efficiently browsing large catalogs of available targets.