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

# Recent events feed (SDK)

> Returns the most recent events for an agent, ordered by timestamp DESC. Optionally filter by `eventName`. Paginated via `limit` (max 100) and `offset`.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/runtime/v1/observability/events/feed
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/v1/observability/events/feed:
    get:
      tags:
        - Runtime API - Events
      summary: Recent events feed (SDK)
      description: >-
        Returns the most recent events for an agent, ordered by timestamp DESC.
        Optionally filter by `eventName`. Paginated via `limit` (max 100) and
        `offset`.
      operationId: RuntimeEventsController_getEventFeed
      parameters:
        - name: agentId
          required: false
          in: query
          description: Agent UUID. Defaults to the API key agent.
          schema:
            type: string
        - name: eventName
          required: false
          in: query
          schema:
            type: string
        - name: limit
          required: false
          in: query
          description: Default 50, max 100.
          schema:
            type: string
        - name: offset
          required: false
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Feed of recent events.
      security:
        - bearer: []
components: {}

````