For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
User GuideDeveloper GuidesAPI Reference
User GuideDeveloper GuidesAPI Reference
    • Overview
  • Runtype API
      • GETList data connections
      • POSTCreate connect session
      • POSTSync connections
      • GETGet data connection
      • DELDelete data connection
      • PATCHUpdate connection status
      • GETList connection tools
Dashboard
LogoLogo
Runtype APIData Connections

List data connections

GET
/v1/data-connections
GET
/v1/data-connections
$curl https://api.runtype.com/v1/data-connections \
> -H "Authorization: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "conn_9f8b7c6d5e4a3b2c1d0e",
5 "name": "Salesforce CRM",
6 "category": "CRM",
7 "status": "active",
8 "createdAt": "2024-05-10T09:15:00Z",
9 "lastSyncedAt": "2024-06-01T12:00:00Z",
10 "details": {
11 "accountId": "0015g00000XyzAbCDE",
12 "region": "us-west-2"
13 }
14 }
15 ]
16}

List all data connections for the authenticated user/org.

Was this page helpful?
Previous

Create connect session

Next
Built with

Authentication

AuthorizationBearer
API key or Clerk session token

Query parameters

categorystringOptional
Filter by integration category
statusstringOptional
Filter by connection status

Response

List of connections
datalist of objects

Errors

401
Unauthorized Error
500
Internal Server Error