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
Copy
Ask AI
curl --request GET \
--url https://api.nango.dev/connection
Copy
Ask AI
{
"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"
}
}
]
}
Copy
Ask AI
{
"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 response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://api.nango.dev/connection
Copy
Ask AI
{
"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"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.