Connections
List connections
Reference
Use Integrations
- HTTP API
- Authentication
- Rate limits
- Integrations
- Connections
- Scripts
- Syncs
- Actions
- Proxy
- Backend SDKs
- Frontend SDK
- Webhooks
Build Integrations
Connections
List connections
Returns a list of connections without credentials
GET
/
connection
curl --request GET \
--url https://api.nango.dev/connection
{
"connections": [
{
"id": 1,
"connection_id": "test-1",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T14:53:22.051Z",
"metadata": null
},
{
"id": 2,
"connection_id": "test-2",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T15:00:14.945Z",
"metadata": {
"bot_id": "some-uuid"
}
}
]
}
{
"connections": [
{
"id": 1,
"connection_id": "test-1",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T14:53:22.051Z",
"metadata": null
},
{
"id": 2,
"connection_id": "test-2",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T15:00:14.945Z",
"metadata": {
"bot_id": "some-uuid"
}
}
]
}
Query Parameters
Filter the list of connections based on this connection ID.
Response
200 - application/json
Successfully returned a list of connections
The internal Nango ID used for the connection.
The connection ID used to create the connection.
The Nango API Configuration.
The integration ID used to create the connection (aka Unique Key, Provider Config Key).
Connection creation date.
Custom metadata attached to the connection
Was this page helpful?
curl --request GET \
--url https://api.nango.dev/connection
{
"connections": [
{
"id": 1,
"connection_id": "test-1",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T14:53:22.051Z",
"metadata": null
},
{
"id": 2,
"connection_id": "test-2",
"provider": "slack",
"provider_config_key": "slack-nango-community",
"created": "2023-06-03T15:00:14.945Z",
"metadata": {
"bot_id": "some-uuid"
}
}
]
}