Launch Week 02 wrapped — explore all five launches

List Transformers

GEThttps://api.confident-ai.com/v2/transformers

Lists the transformers in your Confident AI project one page at a time, ordered by name. Use the returned ids for an AI connection's or a metric collection's transformer fields; retrieve one by id to read its code.

GET/v2/transformers
curl -X GET "https://api.confident-ai.com/v2/transformers" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "transformers": [
      {
        "id": "<TRANSFORMER-ID>",
        "name": "Extract nested answer",
        "description": "Pulls the answer out of a nested envelope.",
        "createdAt": "2025-01-15T10:30:00.000Z",
        "updatedAt": "2025-01-20T08:15:00.000Z"
      }
    ],
    "totalTransformers": 4,
    "page": 1,
    "pageSize": 25
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Query parameters

  • pageintegerdefault: 1

    The page to return. Defaults to 1.

  • pageSizeintegerdefault: 25

    The number of results per page, at most 100. Defaults to 25.

Response

List Transformers succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    One page of transformers, with the total across all pages.

    Show 4 propertiesHide 4 properties
    • transformerslist of objects

      The transformers for the current page, ordered by name.

      Show 5 propertiesHide 5 properties
      • idstring

        The id of the transformer, generated by Confident AI.

      • namestring

        The name of the transformer.

      • descriptionstring | null

        What the transformer extracts.

      • createdAtstring

        The timestamp when the transformer was created.

      • updatedAtstring

        The timestamp when the transformer was last updated.

    • totalTransformersinteger

      The total number of transformers in this project.

    • pageinteger

      The page this response covers.

    • pageSizeinteger

      The number of transformers per page.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI