Catalogs  /  List destination types

List destination types

GET/v1/destination-types

Returns each destination type with the connection methods it supports (oauth, paste_token, mcc_link). This describes what's possible to connect, separate from what's currently connected on your account.

Response fields
type
string
The destination type slug, e.g. google-ads.
name
string
Display name.
connection_types
array
Methods available, e.g. oauth, paste_token, mcc_link.
GET/v1/destination-types
curl https://app.converly.io/api/v1/destination-types
200 OK
{
  "data": [
    { "type": "google-ads", "name": "Google Ads",
      "connection_types": ["oauth", "mcc_link"] },
    { "type": "meta", "name": "Meta Ads",
      "connection_types": ["oauth", "paste_token"] },
    { "type": "google-analytics", "name": "Google Analytics 4",
      "connection_types": ["oauth", "paste_token"] }
  ]
}