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

# Run Quick Test

> Run a quick single-question test against an agent.



## OpenAPI

````yaml /openapi-v1.json post /api/v1/simulation/quick-test
openapi: 3.1.0
info:
  title: AGO Public API
  version: 1.0.0
  description: Programmatic access to your AGO workspace.
servers:
  - url: https://{tenant_id}.api.useago.com
    description: AGO Public API v1
    variables:
      tenant_id:
        default: your-tenant-id
        description: Your AGO tenant identifier
security: []
paths:
  /api/v1/simulation/quick-test:
    post:
      tags:
        - Simulation
      summary: Run Quick Test
      description: Run a quick single-question test against an agent.
      operationId: core_api_v1_controllers_simulation_run_quick_test
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/QuickTestIn'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QuickTestOut'
      security:
        - ScopedAPIKeyAuth: []
components:
  schemas:
    QuickTestIn:
      description: Schema for running a quick single-question test via the v1 API.
      properties:
        agent_id:
          title: Agent Id
          type: string
        question:
          title: Question
          type: string
      required:
        - agent_id
        - question
      title: QuickTestIn
      type: object
    QuickTestOut:
      description: Response schema for quick single-question test results.
      properties:
        object:
          default: simulation_quick_test
          title: Object
          type: string
        response:
          anyOf:
            - type: string
            - type: 'null'
          title: Response
        tool_calls:
          anyOf:
            - items:
                additionalProperties: true
                type: object
              type: array
            - type: 'null'
          title: Tool Calls
        execution_time_ms:
          anyOf:
            - type: integer
            - type: 'null'
          title: Execution Time Ms
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        routed_agent_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Routed Agent Id
        routed_agent_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Routed Agent Name
      title: QuickTestOut
      type: object
  securitySchemes:
    ScopedAPIKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````