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

# Get run details

> View one run, including the period it searched, the events it found, links to supporting sources, and API usage.



## OpenAPI

````yaml /api-rest/openapi/openapi_search_monitoring.json get /v1/search-monitoring/monitors/{monitor_id}/runs/{run_id}
openapi: 3.1.0
info:
  title: Monitors API
  description: >-
    Coming soon. Run a saved Bigdata Search on a schedule and receive structured
    events from new content. Test a monitor against recent historical data
    before turning it on.
  version: 1.0.0
servers:
  - url: https://api.bigdata.com
    description: Production server
security:
  - API Key Authentication: []
tags:
  - name: Monitors
    description: Coming soon. Create, test, activate, and review monitors.
paths:
  /v1/search-monitoring/monitors/{monitor_id}/runs/{run_id}:
    get:
      tags:
        - Monitors
      summary: Get run details
      description: >-
        View one run, including the period it searched, the events it found,
        links to supporting sources, and API usage.
      operationId: getMonitorRun
      parameters:
        - $ref: '#/components/parameters/MonitorId'
        - name: run_id
          in: path
          required: true
          description: Unique identifier for the run.
          schema:
            type: string
          example: run_01J6C72NV6A58H25PHX61DRE3G
      responses:
        '200':
          description: Run returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunResponse'
        '422':
          $ref: '#/components/responses/ValidationError'
components:
  parameters:
    MonitorId:
      name: monitor_id
      in: path
      required: true
      description: Unique identifier for the monitor.
      schema:
        type: string
        format: uuid
      example: 6af74cb7-0a6e-4ea0-8421-acde4c85e56a
  schemas:
    RunResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/Run'
        metadata:
          $ref: '#/components/schemas/Metadata'
      required:
        - data
        - metadata
    Run:
      type: object
      properties:
        id:
          type: string
        status:
          $ref: '#/components/schemas/RunStatus'
        is_simulation:
          type: boolean
        simulation_id:
          anyOf:
            - type: string
            - type: 'null'
        window_start:
          type: string
          format: date-time
        window_end:
          type: string
          format: date-time
        event_count:
          type: integer
          minimum: 0
        events:
          type: array
          items:
            $ref: '#/components/schemas/MonitorEvent'
        usage:
          $ref: '#/components/schemas/Usage'
      required:
        - id
        - status
        - is_simulation
        - window_start
        - window_end
        - event_count
        - events
        - usage
    Metadata:
      type: object
      properties:
        request_id:
          type: string
        timestamp:
          type: string
          format: date-time
      required:
        - request_id
        - timestamp
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    RunStatus:
      type: string
      enum:
        - PENDING
        - COMPLETED
        - FAILED
      description: >-
        `PENDING` is still processing, `COMPLETED` is ready to review, and
        `FAILED` could not be completed.
    MonitorEvent:
      type: object
      description: >-
        A structured event found during a run. The API returns it in the
        `events` array. Fields from `structured_output` appear alongside the
        summary and supporting sources.
      properties:
        id:
          type: string
        summary:
          type: string
        grounding:
          type: array
          items:
            $ref: '#/components/schemas/Grounding'
      required:
        - id
        - summary
        - grounding
      additionalProperties: true
    Usage:
      type: object
      properties:
        api_query_units:
          type: number
      required:
        - api_query_units
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
          additionalProperties: true
      required:
        - loc
        - msg
        - type
    Grounding:
      type: object
      properties:
        id:
          type: string
        headline:
          type: string
        source:
          $ref: '#/components/schemas/GroundingSource'
        url:
          type: string
          format: uri
        cnum:
          type: integer
        timestamp:
          type: string
      required:
        - id
        - headline
        - source
        - url
        - cnum
        - timestamp
    GroundingSource:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
      required:
        - id
        - name
  responses:
    ValidationError:
      description: Validation error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/HTTPValidationError'
  securitySchemes:
    API Key Authentication:
      type: apiKey
      in: header
      name: X-API-KEY
      description: API key created in the Bigdata Developer Platform.

````