v1

latestOpenAPI 3.1.02026-07-2654172281.3 KB
Destinations

List destinations

get/destinations

Query parameters

workspaceIdsstring[]

The UUIDs of the workspaces you wish to list destinations for. Empty list will retrieve all allowed workspaces.

includeDeletedboolean

Include deleted destinations in the returned results.

limitinteger

Set the limit on the number of destinations returned. The default is 20.

offsetinteger

Set the offset to start at when returning destinations. The default is 0

Response

Successful operation

previousstring
nextstring

Example response

{
  "next": "https://api.airbyte.com/v1/destinations?limit=5&offset=10",
  "previous": "https://api.airbyte.com/v1/destinations?limit=5&offset=0",
  "data": {
    "destinationId": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",
    "name": "Analytics Team Postgres",
    "destinationType": "postgres",
    "workspaceId": "871d9b60-11d1-44cb-8c92-c246d53bf87e"
  }
}