Launch Week 02 wrapped — explore all five launches

List Dataset Versions

GEThttps://api.confident-ai.com/v1/datasets/{alias}/versions

Returns all versions of the dataset, newest first.

GET/v1/datasets/{alias}/versions
curl -X GET "https://api.confident-ai.com/v1/datasets/{alias}/versions" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "versions": [
      {
        "id": "abc-123",
        "version": "00.00.02",
        "createdAt": "2026-05-28T13:35:16.268Z"
      },
      {
        "id": "def-456",
        "version": "00.00.01",
        "createdAt": "2026-05-28T13:05:24.777Z"
      }
    ]
  },
  "deprecated": false
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The API key of your Confident AI project.

Path parameters

  • aliasstringRequired

    The unique alias of the dataset.

Response

  • successboolean

    Indicates if the request was successful

  • dataobject

    Show 1 propertyHide 1 property
    • versionslist of objects

      Show 3 propertiesHide 3 properties
      • idstring

        A unique identifier for the dataset version.

      • versionstring

        The version label (e.g. "00.00.01").

      • createdAtstring

        ISO timestamp of when the version was created.

Built byConfident AI