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

# List Suites



## OpenAPI

````yaml GET /agent-eval/suites
openapi: 3.1.0
info:
  title: Yappr API
  description: >
    Create and manage AI voice agents, purchase phone numbers, configure tools,
    and initiate calls — all via REST.
  version: 1.0.0
  contact:
    url: https://goyappr.com
servers:
  - url: https://api.goyappr.com
    description: Production
security:
  - apiKey: []
paths:
  /agent-eval/suites:
    get:
      tags:
        - Agent Eval
      summary: List suites
      operationId: listSuites
      parameters:
        - in: query
          name: limit
          schema:
            type: integer
            default: 20
            maximum: 100
        - in: query
          name: offset
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of suites
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/EvalSuite'
                  pagination:
                    type: object
                    properties:
                      total:
                        type: integer
                      limit:
                        type: integer
                      offset:
                        type: integer
                      has_more:
                        type: boolean
components:
  schemas:
    EvalSuite:
      type: object
      description: Curated bundle of eval cases that run as one batch (regression sweep).
      required:
        - id
        - company_id
        - name
        - parallelism
        - created_at
      properties:
        id:
          type: string
          format: uuid
        company_id:
          type: string
          format: uuid
        name:
          type: string
        description:
          type: string
          nullable: true
        agent_id:
          type: string
          format: uuid
          nullable: true
          description: >
            Optional default agent for ad-hoc cases added to the suite. Per-case
            `agent_id` always wins; this is just a convenience for the
            dashboard.
        parallelism:
          type: integer
          minimum: 1
          maximum: 16
          default: 1
          description: Max concurrent cases when the suite runs.
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        deleted_at:
          type: string
          format: date-time
          nullable: true
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Your Yappr API key (e.g. `ypr_live_...`). Generate one in the dashboard
        under **Settings → API Keys**.

````