Skip to main content
GET
/
v1
/
integrations
List integrations
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/integrations \
  --header 'Authorization: <api-key>'
[
  {
    "type": "email",
    "provider": "google",
    "display_name": "Gmail",
    "description": "Connect to your Gmail account to automatically sync emails, create contacts, and update context.",
    "connections": [
      {
        "id": 12345,
        "status": "active",
        "identifier": "user@example.com"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Response

List of integrations with connection status

type
enum<string>

Integration type

Available options:
email,
calendar,
messaging,
crm
Example:

"email"

provider
enum<string>

Integration provider

Available options:
google,
microsoft,
slack,
attio,
hubspot,
salesforce
Example:

"google"

display_name
string

Human-readable name of the integration

Example:

"Gmail"

description
string

Description of the integration

Example:

"Connect to your Gmail account to automatically sync emails, create contacts, and update context."

connections
object[]

Active connections for this integration

Last modified on March 7, 2026