API ReferenceEcosystemExternal connection

Get list of external connection (mcp ecosystem)

GET
/external-data

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

page?number
limit?number

Response Body

application/json

curl -X GET "https://dev-backend.thelinks.ai/api/v1/external-data"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "type": "string",
      "isAIAgentEnabled": true,
      "mcpDescription": "string",
      "mcpCategory": "string",
      "businessType": "string",
      "businessMeaning": "string",
      "isActive": true,
      "createdAt": 0,
      "updatedAt": 0
    }
  ],
  "page": 1,
  "limit": 10,
  "totalPages": 5,
  "totalResults": 50
}