Launch Week 02 wrapped — explore all five launches

List Classifiers

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

Lists the classifiers in your project as summary rows — enough to pick one, not the whole record. Retrieve a classifier by id for its filters, generation config, and labels. Requires the Starter plan or above.

GET/v1/classifiers
curl -X GET "https://api.confident-ai.com/v1/classifiers" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "classifiers": [
      {
        "id": "CLASSIFIER-ID",
        "name": "Sentiment",
        "enabled": true,
        "dataModel": "TRACE"
      }
    ]
  },
  "link": "https://app.confident-ai.com/project/<PROJECT-ID>/workflows"
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Query parameters

  • dataModelenum

    Only return classifiers for this kind of item. Omit to return all of them.

Response

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • classifierslist of objects

      The project's classifiers, as summary rows.

      Show 4 propertiesHide 4 properties
      • idstring

        The unique identifier of the classifier.

      • namestring

        The classifier's name.

      • enabledboolean

        Whether the classifier runs at all.

      • dataModelenum

        What kind of item the classifier classifies.

        Show 2 enum valuesHide 2 enum values
        • TRACE
        • THREAD
  • linkstring

    A link to the workflows page.

Built byConfident AI