Listing Connectors

Discover which services are available for your users to connect.

List All Providers

curl https://api.bluenexus.ai/api/v1/providers

This endpoint is public — no authentication required.

Response:

[
  {
    "id": "google",
    "label": "Google Workspace",
    "description": "Gmail, Calendar, Drive, Docs, and more",
    "logoUrl": "/provider-logos/google.svg",
    "category": "productivity",
    "popular": true,
    "authType": "oauth",
    "allowMultipleConnections": false
  },
  {
    "id": "slack",
    "label": "Slack",
    "description": "Team messaging and collaboration",
    "logoUrl": "/provider-logos/slack.svg",
    "category": "communication",
    "popular": true,
    "authType": "oauth",
    "allowMultipleConnections": false
  }
]

Get a Specific Provider

curl https://api.bluenexus.ai/api/v1/providers/google \
  -H "Authorization: Bearer ACCESS_TOKEN"

Requires authentication. Returns full provider details.

Provider Fields

Field Description
id Unique identifier (e.g., "google", "slack")
label Display name
description What the service does
logoUrl Logo image URL
category Category: productivity, development, communication, finance, etc.
popular Whether this is a commonly used provider
authType "oauth" or "custom-input"
allowMultipleConnections Whether users can have multiple connections to this service

Categories

Category Example Providers
productivity Google Workspace, Microsoft 365, Notion, Airtable, Dropbox
communication Slack, Discord, Telegram, Reddit, Zoom
development GitHub, Jira, Sentry, Figma
finance Stripe, FreshBooks, Xero
crm HubSpot, Pipedrive, Zoho

Next Steps