Launch Week 02 wrapped — explore all five launches

List AI Connections

GEThttps://api.confident-ai.com/v1/ai-connections

Lists the AI connections in your project.

GET/v1/ai-connections
curl -X GET "https://api.confident-ai.com/v1/ai-connections" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "aiConnections": [
      {
        "id": "AI-CONNECTION-ID",
        "name": "Production Chatbot",
        "endpoint": "https://api.example.com/chat",
        "active": true
      }
    ]
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Response

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • aiConnectionslist of objects

      Show 4 propertiesHide 4 properties
      • idstring

        The unique identifier of the AI connection.

      • namestring

        The name of the AI connection.

      • endpointstring

        The endpoint of the AI connection where requests are made.

      • activeboolean

        Whether the AI connection is active.

Built byConfident AI