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

# Get v1executions events



## OpenAPI

````yaml /openapi/managed.yaml get /v1/executions/{execution_id}/events
openapi: 3.1.0
info:
  title: DreamLayer Managed Image API
  version: '1'
  description: Opaque conversational image execution for runtimes, apps, and agents.
servers:
  - url: https://api.dreamlayer.io
security:
  - bearerAuth: []
paths:
  /v1/executions/{execution_id}/events:
    get:
      operationId: resumeExecutionEvents
      parameters:
        - $ref: '#/components/parameters/Version'
        - $ref: '#/components/parameters/ExecutionId'
        - name: Last-Event-ID
          in: header
          schema:
            type: string
      responses:
        '200':
          description: Persisted server-sent events after the supplied cursor
          content:
            text/event-stream:
              schema:
                type: string
components:
  parameters:
    Version:
      name: DreamLayer-Version
      in: header
      required: true
      schema:
        type: string
        const: '1'
    ExecutionId:
      name: execution_id
      in: path
      required: true
      schema:
        type: string
        format: uuid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````