GET
/
api
/
v1
/
connectors
curl --request GET \
  --url https://api.squared.ai/api/v1/connectors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "<string>",
      "attributes": {
        "name": "<string>",
        "connector_type": "<string>",
        "workspace_id": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "configuration": {},
        "connector_name": "<string>",
        "icon": "<string>"
      }
    }
  ],
  "links": {
    "self": "<string>",
    "first": "<string>",
    "prev": "<string>",
    "next": "<string>",
    "last": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>
required

Type of the connector

Available options:
source,
destination
category
enum<string>
required

Category of the connector

Available options:
data,
ai_ml

Response

200 - application/json
A list of connectors
data
object[]