Integrations
List all integrations
Reference
Use Integrations - Reference
- Frontend SDK
- HTTP API
- Authentication
- Rate limits
- Providers
- Integrations
- Configs (deprecated)
- Connections
- Scripts
- Syncs
- Actions
- Proxy
- Connect
- Backend SDKs
Build Integrations - Reference
Integrations
List all integrations
Returns a list of integrations
GET
/
integrations
const nango = new Nango({ secretKey });
const response = await nango.listIntegrations();
{
"data": [
{
"unique_key": "slack-nango-community",
"display_name": "Slack",
"provider": "slack",
"logo": "http://localhost:3003/images/template-logos/slack.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
{
"unique_key": "github-prod",
"display_name": "GitHub",
"provider": "github",
"logo": "http://localhost:3003/images/template-logos/github.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
]
}
const nango = new Nango({ secretKey });
const response = await nango.listIntegrations();
{
"data": [
{
"unique_key": "slack-nango-community",
"display_name": "Slack",
"provider": "slack",
"logo": "http://localhost:3003/images/template-logos/slack.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
{
"unique_key": "github-prod",
"display_name": "GitHub",
"provider": "github",
"logo": "http://localhost:3003/images/template-logos/github.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
]
}
Response
200
application/json
Successfully returned an integration
The response is of type object
.
const nango = new Nango({ secretKey });
const response = await nango.listIntegrations();
{
"data": [
{
"unique_key": "slack-nango-community",
"display_name": "Slack",
"provider": "slack",
"logo": "http://localhost:3003/images/template-logos/slack.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
{
"unique_key": "github-prod",
"display_name": "GitHub",
"provider": "github",
"logo": "http://localhost:3003/images/template-logos/github.svg",
"created_at": "2023-10-16T08:45:26.241Z",
"updated_at": "2023-10-16T08:45:26.241Z",
},
]
}