curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinationsimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"destinations": [
{
"destination": "snowflake",
"name": "Snowflake",
"category": "warehouse",
"connector_status": "ga",
"docs_url": "https://docs.snowflake.com",
"configured": true,
"enabled": true,
"credentials_configured": true,
"sync_now_pending": false,
"config": {
"account": "xy12345.us-east-1",
"database": "ORBIT",
"schema_name": "PUBLIC",
"sync_interval_minutes": 720
},
"run": {
"destination": "snowflake",
"configured": true,
"enabled": true,
"last_run_at": "2026-08-06T02:00:00.000Z",
"last_run_status": "ok",
"rows_contacts": 1240,
"rows_events": 8830,
"rows_total": 10070,
"last_error": null,
"last_error_at": null,
"consecutive_failures": 0,
"health": "ok"
},
"health": "ok",
"configure_url": "/api/v1/cdp/reverse-etl/warehouse/snowflake",
"sync_now_url": "/api/v1/cdp/reverse-etl/snowflake/sync-now",
"backfill_url": "/api/v1/cdp/reverse-etl/snowflake/backfill"
}
],
"summary": {
"configured": 1,
"enabled": 1,
"needs_attention": false
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-22T12:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Reverse-ETL destinations panel
Returns one row per reverse-ETL warehouse destination (BigQuery, Snowflake, Redshift, Postgres, Databricks, ClickHouse) combining catalog metadata, the redacted per-destination configuration (the encrypted credential is reduced to a credentials_configured flag and never returned), the latest sync-run snapshot with its derived health, and actionable pointers (configure / sync-now / backfill URLs, the last two presented only when the destination is configured and enabled). Read-only aggregation over organizations.settings.reverse_etl_*; no secret material is ever read or returned. Owner / admin / developer only.
curl --request GET \
--url https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinationsimport requests
url = "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/cdp/reverse-etl/destinations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"data": {
"destinations": [
{
"destination": "snowflake",
"name": "Snowflake",
"category": "warehouse",
"connector_status": "ga",
"docs_url": "https://docs.snowflake.com",
"configured": true,
"enabled": true,
"credentials_configured": true,
"sync_now_pending": false,
"config": {
"account": "xy12345.us-east-1",
"database": "ORBIT",
"schema_name": "PUBLIC",
"sync_interval_minutes": 720
},
"run": {
"destination": "snowflake",
"configured": true,
"enabled": true,
"last_run_at": "2026-08-06T02:00:00.000Z",
"last_run_status": "ok",
"rows_contacts": 1240,
"rows_events": 8830,
"rows_total": 10070,
"last_error": null,
"last_error_at": null,
"consecutive_failures": 0,
"health": "ok"
},
"health": "ok",
"configure_url": "/api/v1/cdp/reverse-etl/warehouse/snowflake",
"sync_now_url": "/api/v1/cdp/reverse-etl/snowflake/sync-now",
"backfill_url": "/api/v1/cdp/reverse-etl/snowflake/backfill"
}
],
"summary": {
"configured": 1,
"enabled": 1,
"needs_attention": false
}
},
"meta": {
"request_id": "req_01J8Z9K3P4Q5R6S7T8U9V0W1X2",
"timestamp": "2026-08-22T12:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "<string>",
"status": 429,
"retry_after": 2
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"status": 123,
"details": {}
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Response
The destinations panel view: one row per reverse-ETL destination plus a configured/enabled/needs-attention summary.
The destinations panel view: one row per reverse-ETL destination plus a configured/enabled/needs-attention summary.