Skip to main content
GET
/
v1
/
connections
List Connections
curl --request GET \
  --url https://api.adapter.com/v1/connections
[
  {
    "connection_id": "conn_01abc123",
    "provider": "slack",
    "resources": [
      "messages",
      "files"
    ],
    "connected_at": "2026-01-15T10:30:00Z",
    "team_name": "Acme Corp",
    "external_account_id": "T01ABC123"
  }
]

Response

Successful Response

connection_id
string
required

Unique identifier for the connection.

Example:

"conn_01abc123"

provider
string
required

Provider slug.

Example:

"slack"

resources
string[]
required

Resource slugs available for this connection.

Example:
["messages", "files"]
connected_at
string | null

ISO 8601 timestamp of when the connection was created.

Example:

"2026-01-15T10:30:00Z"

team_name
string | null

Workspace or team display name from the provider.

Example:

"Acme Corp"

external_account_id
string | null

Account ID assigned by the provider.

Example:

"T01ABC123"