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

# List request traces for a deployment the caller's workspace owns.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/deployments/{deployment_id}/traces
openapi: 3.1.0
info:
  title: Veri API
  description: >-
    REST API for the Veri RL post-training platform. All requests require a
    Bearer API key (`vk_` prefix).
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.veri.studio
    description: Production
security: []
tags:
  - name: Training jobs
    description: Create, monitor, and manage training jobs.
  - name: Datasets
    description: Upload and connect training datasets.
  - name: Deployments
    description: Serve trained models and run inference.
  - name: Volumes
    description: Persistent file storage mounted into jobs.
  - name: Models
    description: Custom model registry deployments serve from.
  - name: Regions
    description: Discover available launch regions.
  - name: GPU
    description: Live GPU availability by provider and region.
  - name: Compatibility
    description: Advisory model and runtime compatibility guidance.
  - name: Code artifacts
    description: Upload custom training script bundles.
  - name: Billing
    description: Credit balance and transaction history.
  - name: API keys
    description: Create and revoke API keys.
  - name: Account
    description: The authenticated caller's identity.
  - name: SSH keys
    description: Manage SSH key pairs for compute access.
  - name: Settings
    description: Account-level integrations (Weights & Biases).
  - name: Metrics
    description: Prometheus metrics export for your own observability stack.
paths:
  /v1/deployments/{deployment_id}/traces:
    get:
      tags:
        - Deployments
      summary: List request traces for a deployment the caller's workspace owns.
      operationId: traces
      parameters:
        - name: deployment_id
          in: path
          description: Deployment ID
          required: true
          schema:
            type: string
        - name: page
          in: path
          description: 1-based page.
          required: true
          schema:
            type:
              - integer
              - 'null'
            format: int32
            minimum: 0
        - name: limit
          in: path
          description: Page size, 1..=100 (default 20).
          required: true
          schema:
            type:
              - integer
              - 'null'
            format: int32
            minimum: 0
        - name: from
          in: path
          description: ISO-8601 lower bound on trace time.
          required: true
          schema:
            type:
              - string
              - 'null'
        - name: to
          in: path
          description: ISO-8601 upper bound on trace time.
          required: true
          schema:
            type:
              - string
              - 'null'
      responses:
        '200':
          description: >-
            Paged trace list ({object, data, page, limit, total_items,
            total_pages}); each item is a trace with input/output bodies, tags,
            and metadata.veri_request_id cross-linking to GET /requests
          content:
            application/json:
              schema: {}

````