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

# Get a single dispatcher request log entry (verbose)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/mocks/requests/{request_id}
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/mocks/requests/{request_id}:
    get:
      tags:
        - mocks
      summary: Get a single dispatcher request log entry (verbose)
      operationId: getMockRequestLog
      parameters:
        - name: request_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Request Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MockRequestLogVerbose'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    MockRequestLogVerbose:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        mock_id:
          type: string
          format: uuid
          title: Mock Id
        scenario_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Scenario Id
        method:
          type: string
          title: Method
        path:
          type: string
          title: Path
        response_status:
          type: integer
          title: Response Status
        latency_ms:
          type: integer
          title: Latency Ms
        truncated_request:
          type: boolean
          title: Truncated Request
        truncated_response:
          type: boolean
          title: Truncated Response
        created_at:
          type: string
          format: date-time
          title: Created At
        request_query:
          additionalProperties: true
          type: object
          title: Request Query
        request_headers:
          additionalProperties: true
          type: object
          title: Request Headers
        request_body:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Request Body
        response_headers:
          additionalProperties: true
          type: object
          title: Response Headers
        response_body:
          anyOf:
            - additionalProperties: true
              type: object
            - items: {}
              type: array
            - type: 'null'
          title: Response Body
        trace_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Trace Id
      type: object
      required:
        - id
        - mock_id
        - scenario_id
        - method
        - path
        - response_status
        - latency_ms
        - truncated_request
        - truncated_response
        - created_at
        - request_query
        - request_headers
        - request_body
        - response_headers
        - response_body
        - trace_id
      title: MockRequestLogVerbose
      description: 'Verbose single-get response: includes request/response bodies + headers.'
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````