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

# Get Execution Correlations

> Get execution correlation data for a trigger.

Returns execution data with correlation information to created tasks
and workflows for debugging and monitoring purposes.

Args:
    trigger_id: The unique identifier of the trigger
    page: Page number for pagination
    page_size: Number of executions per page
    user_context: Authentication context
    trigger_service: Injected trigger service

Returns:
    Execution correlation data

Raises:
    HTTPException: If trigger not found



## OpenAPI

````yaml /api-reference/openapi.json get /v1/triggers/{trigger_id}/correlations
openapi: 3.1.0
info:
  description: >-
    Modular and extensible framework for building AI agents. This API requires
    JWT Bearer token authentication for most endpoints. Include your JWT token
    in the Authorization header. Public endpoints include /, /health, /docs,
    /redoc, and /openapi.json.
  title: AgentArea API
  version: 0.1.0
servers: []
security:
  - bearer: []
paths:
  /v1/triggers/{trigger_id}/correlations:
    get:
      tags:
        - v1
        - protected
        - triggers
      summary: Get Execution Correlations
      description: |-
        Get execution correlation data for a trigger.

        Returns execution data with correlation information to created tasks
        and workflows for debugging and monitoring purposes.

        Args:
            trigger_id: The unique identifier of the trigger
            page: Page number for pagination
            page_size: Number of executions per page
            user_context: Authentication context
            trigger_service: Injected trigger service

        Returns:
            Execution correlation data

        Raises:
            HTTPException: If trigger not found
      operationId: get_execution_correlations_v1_triggers__trigger_id__correlations_get
      parameters:
        - in: path
          name: trigger_id
          required: true
          schema:
            format: uuid
            title: Trigger Id
            type: string
        - description: Page number
          in: query
          name: page
          required: false
          schema:
            default: 1
            description: Page number
            minimum: 1
            title: Page
            type: integer
        - description: Number of executions per page
          in: query
          name: page_size
          required: false
          schema:
            default: 50
            description: Number of executions per page
            maximum: 100
            minimum: 1
            title: Page Size
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExecutionCorrelationResponse'
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - HTTPBearer: []
components:
  schemas:
    ExecutionCorrelationResponse:
      description: Response model for execution correlation data.
      properties:
        executions:
          items:
            additionalProperties: true
            type: object
          title: Executions
          type: array
        has_next:
          title: Has Next
          type: boolean
        page:
          title: Page
          type: integer
        page_size:
          title: Page Size
          type: integer
        total:
          title: Total
          type: integer
      required:
        - executions
        - total
        - page
        - page_size
        - has_next
      title: ExecutionCorrelationResponse
      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
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: JWT Bearer token for authentication
      scheme: bearer
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````