Skip to main content
GET
/
v1
/
integrations
/
connect
/
{connect_id}
/
status
Get connection status
curl --request GET \
  --url https://app.nex.ai/api/developers/v1/integrations/connect/{connect_id}/status \
  --header 'Authorization: <api-key>'
{
  "status": "connected",
  "connection_id": 12345
}

Authorizations

Authorization
string
header
required

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

Path Parameters

connect_id
string
required

Connect ID returned by the start connect endpoint

Response

Current connection status

status
enum<string>

Connection status: "pending" while waiting, "connected" when complete

Available options:
pending,
connected
Example:

"connected"

connection_id
integer

ID of the newly created connection (only present when status is "connected")

Example:

12345

Last modified on March 7, 2026