Launch Week 02 wrapped — explore all five launches

List Transformers

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

Lists all the transformers in your Confident AI project. Use the returned ids for an AI connection's transformer fields.

GET/v1/transformers
curl -X GET "https://api.confident-ai.com/v1/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": "2024-01-01T00:00:00.000Z",
        "updatedAt": "2024-01-01T00:00:00.000Z"
      }
    ]
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Response

The transformers in your project.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    The transformers in your project.

    Show 1 propertyHide 1 property
    • transformerslist of objects

      The transformers, ordered by name.

      Show 5 propertiesHide 5 properties
      • idstring

        The unique identifier of the transformer.

      • namestring

        The name of the transformer.

      • descriptionstring

        What the transformer extracts.

      • createdAtstring

        When the transformer was created.

      • updatedAtstring

        When the transformer was last updated.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI