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

# List Ingestions

> List recent ingestions with candidate-level telemetry for DataLab timelines.



## OpenAPI

````yaml /openapi.json get /v1/experiments/{experiment_id}/ingestions
openapi: 3.1.0
info:
  description: Customer-owned evaluation lifecycle API.
  title: HeyBee Public API
  version: 1.0.0
servers:
  - description: Production
    url: https://api.heybee.app
security: []
paths:
  /v1/experiments/{experiment_id}/ingestions:
    get:
      tags:
        - Samples
      summary: List Ingestions
      description: >-
        List recent ingestions with candidate-level telemetry for DataLab
        timelines.
      operationId: list_ingestions_v1_experiments__experiment_id__ingestions_get
      parameters:
        - in: path
          name: experiment_id
          required: true
          schema:
            format: uuid
            title: Experiment Id
            type: string
        - in: query
          name: limit
          required: false
          schema:
            default: 20
            maximum: 200
            minimum: 1
            title: Limit
            type: integer
        - in: query
          name: status
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - in: header
          name: authorization
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - in: header
          name: X-API-Key
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Api-Key
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IngestionHistoryResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - BearerAuth: []
        - ApiKeyAuth: []
components:
  schemas:
    IngestionHistoryResponse:
      description: List response for ingestion timeline history.
      properties:
        ingestions:
          items:
            $ref: '#/components/schemas/IngestionHistoryItem'
          title: Ingestions
          type: array
        total:
          title: Total
          type: integer
      required:
        - ingestions
        - total
      title: IngestionHistoryResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    IngestionHistoryItem:
      description: Ingestion list item for timeline/telemetry views.
      properties:
        candidate_breakdown:
          items:
            $ref: '#/components/schemas/IngestionCandidateBreakdownItem'
          title: Candidate Breakdown
          type: array
        committed_at:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          title: Committed At
        created_anchors:
          title: Created Anchors
          type: integer
        created_at:
          format: date-time
          title: Created At
          type: string
        created_candidates:
          title: Created Candidates
          type: integer
        created_samples:
          title: Created Samples
          type: integer
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        idempotency_key:
          title: Idempotency Key
          type: string
        ingestion_id:
          format: uuid
          title: Ingestion Id
          type: string
        mode:
          title: Mode
          type: string
        readiness_state_after_commit:
          anyOf:
            - type: string
            - type: 'null'
          title: Readiness State After Commit
        reused_samples:
          default: 0
          title: Reused Samples
          type: integer
        status:
          title: Status
          type: string
        updated_at:
          format: date-time
          title: Updated At
          type: string
      required:
        - ingestion_id
        - mode
        - idempotency_key
        - status
        - created_anchors
        - created_candidates
        - created_samples
        - created_at
        - updated_at
      title: IngestionHistoryItem
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    IngestionCandidateBreakdownItem:
      description: Candidate-level sample counts for an ingestion batch.
      properties:
        candidate_id:
          anyOf:
            - format: uuid
              type: string
            - type: 'null'
          title: Candidate Id
        candidate_key:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidate Key
        candidate_label:
          anyOf:
            - type: string
            - type: 'null'
          title: Candidate Label
        sample_count:
          default: 0
          title: Sample Count
          type: integer
      title: IngestionCandidateBreakdownItem
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: Supabase JWT
      scheme: bearer
      type: http
    ApiKeyAuth:
      in: header
      name: X-API-Key
      type: apiKey

````