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

# Get linked telemetry trace family

> Return all traces linked to one execution boundary by parent trace links.



## OpenAPI

````yaml /docs/reference/openapi.json get /telemetry/traces/{trace_id}/family
openapi: 3.1.0
info:
  description: >-
    The HTTP API of an agent served with `omniserve run --agent agent.py`: runs,
    approvals, budgets, background tasks, sessions and the evidence of every
    run.
  title: OmniServe
  version: latest
servers:
  - description: omniserve run, locally
    url: http://localhost:8000
security: []
paths:
  /telemetry/traces/{trace_id}/family:
    get:
      tags:
        - Telemetry
      summary: Get linked telemetry trace family
      description: >-
        Return all traces linked to one execution boundary by parent trace
        links.
      operationId: get_trace_family_telemetry_traces__trace_id__family_get
      parameters:
        - in: path
          name: trace_id
          required: true
          schema:
            title: Trace Id
            type: string
        - in: query
          name: normalize
          required: false
          schema:
            default: false
            title: Normalize
            type: boolean
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TelemetryTraceListResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    TelemetryTraceListResponse:
      description: Response model for filtered telemetry traces.
      properties:
        count:
          description: Number of telemetry traces
          title: Count
          type: integer
        filters:
          additionalProperties: true
          title: Filters
          type: object
        traces:
          description: Telemetry traces
          items:
            additionalProperties: true
            type: object
          title: Traces
          type: array
      required:
        - traces
        - count
      title: TelemetryTraceListResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````