Launch Week 02 wrapped — explore all five launches

List Versions

GEThttps://api.confident-ai.com/v2/datasets/{datasetId}/versions

Lists every version of the dataset, newest first. Requires the Team plan or above.

GET/v2/datasets/{datasetId}/versions
curl -X GET "https://api.confident-ai.com/v2/datasets/{datasetId}/versions" \
  -H "CONFIDENT_API_KEY: <PROJECT-API-KEY>"
200
{
  "success": true,
  "data": {
    "versions": [
      {
        "id": "<DATASET-VERSION-ID>",
        "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

  • datasetIdstringRequired

    The unique id of the dataset.

Response

List Versions succeeded.

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • versionslist of objects

      This is the list of versions of the dataset, newest first.

      Show 3 propertiesHide 3 properties
      • idstring

        The id of the dataset version assigned by Confident AI, not to be confused with the version number.

      • versionstring

        The version number of the dataset version.

      • createdAtstring

        When the version was created, as an ISO 8601 timestamp.

  • deprecatedboolean

    Indicates if this endpoint is deprecated.

Built byConfident AI