Get integration
curl --request GET \
--url http://localhost:8787/api/v1/integrations/{provider} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/integrations/{provider}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/integrations/{provider}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Integrations
Get integration
Retrieve a single integration by provider
GET
/
integrations
/
{provider}
Get integration
curl --request GET \
--url http://localhost:8787/api/v1/integrations/{provider} \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/integrations/{provider}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/integrations/{provider}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Returns one integration by provider name. Credentials are not included.
Path parameters
string
required
Provider name, e.g.
TWILIO, PLIVO, WHATSAPP, GOOGLE_DRIVEcurl https://api.agentic-os.com/api/v1/integrations/TWILIO \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
requests.get(
"https://api.agentic-os.com/api/v1/integrations/TWILIO",
headers={"Authorization": f"Bearer {API_KEY}"},
)
await fetch("https://api.agentic-os.com/api/v1/integrations/TWILIO", {
headers: { Authorization: `Bearer ${API_KEY}` },
});
Response
{
"id": "790bb3d4-b97a-4a48-8488-01b36fbd0c08",
"tenantId": "6376ed84-fmbd-428f-96ea-cfcd21fbd3e9",
"provider": "PLIVO",
"displayName": "Plivo",
"category": "messaging",
"description": "Send SMS, make calls, and manage communications via Plivo.",
"status": "ACTIVE",
"createdAt": "2026-07-21T11:41:32.796Z",
"updatedAt": "2026-07-29T11:10:55.768Z"
}
⌘I

