Destinations  /  Get destination

Get destination

GET/v1/destinations/{id}

Retrieve a single destination.

Path parameters
id
string · required
The destination id, e.g. dest_meta.
Response fields
id
string
A fixed type id, e.g. dest_google-ads. Not a random UUID.
integration
string
The platform slug, e.g. google-ads.
name
string
Display name, e.g. Google Ads.
connected
boolean
True once credentials are configured and validated.
connection_metadata
object
Non-secret details once connected, e.g. account or measurement ids.
GET/v1/destinations/{id}
curl https://app.converly.io/api/v1/destinations/dest_meta \
  -H "Authorization: Bearer sk_live_…"
200 OK
{
  "id": "dest_meta",
  "integration": "meta",
  "name": "Meta Ads",
  "connected": false,
  "connection_metadata": {}
}