> ## Documentation Index
> Fetch the complete documentation index at: https://sidenet.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List experiments

> The experiments run against a dataset, newest first. Read one with GET /v1/experiments/{experimentId}.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/datasets/{id}/experiments
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/datasets/{id}/experiments:
    get:
      tags:
        - Experiments
      summary: List experiments
      description: >-
        The experiments run against a dataset, newest first. Read one with GET
        /v1/experiments/{experimentId}.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            example: ds_orders_v3
          description: Dataset id.
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
          description: 0-based page.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 50
            maximum: 500
      responses:
        '200':
          description: The experiments
          content:
            application/json:
              schema:
                type: object
                properties:
                  experiments:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        name:
                          type: string
                          nullable: true
                        description:
                          type: string
                          nullable: true
                        status:
                          type: string
                          enum:
                            - pending
                            - running
                            - completed
                            - failed
                        datasetId:
                          type: string
                          nullable: true
                        datasetVersion:
                          type: integer
                          nullable: true
                          description: The dataset version the run read its items from.
                        agentVersionId:
                          type: string
                          nullable: true
                          description: The agent version that answered.
                        totalItems:
                          type: integer
                        succeededCount:
                          type: integer
                        failedCount:
                          type: integer
                        skippedCount:
                          type: integer
                        metadata:
                          type: object
                          additionalProperties: true
                          description: What you sent as `metadata` on the run.
                        startedAt:
                          type: string
                          format: date-time
                          nullable: true
                        completedAt:
                          type: string
                          format: date-time
                          nullable: true
                        createdAt:
                          type: string
                          format: date-time
                  pagination:
                    type: object
                    properties:
                      total:
                        type: integer
                      page:
                        type: integer
                      limit:
                        type: integer
                      hasMore:
                        type: boolean
              example:
                experiments:
                  - id: exp_7f31a9c2
                    name: Refund tone — August
                    description: null
                    status: completed
                    datasetId: ds_orders_v3
                    datasetVersion: 2
                    agentVersionId: b3f7a2c8-5d19-4e6b-8f02-1a4c9e7d3b55
                    totalItems: 12
                    succeededCount: 12
                    failedCount: 0
                    skippedCount: 0
                    metadata:
                      ticket: ENG-412
                    startedAt: '2026-08-04T11:02:11.000Z'
                    completedAt: '2026-08-04T11:04:37.000Z'
                    createdAt: '2026-08-04T11:02:10.512Z'
                pagination:
                  total: 1
                  page: 0
                  limit: 50
                  hasMore: false
        '404':
          description: No such dataset in this organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: The class of failure.
                  details:
                    type: string
                    description: What specifically went wrong.
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.

````