> ## 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.

# Ingest events (SDK)

> Push business events from the SDK or any server-to-server caller. Processed asynchronously — the endpoint returns 200 immediately and the events become queryable within a few seconds.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/runtime/v1/observability/events
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:
    post:
      tags:
        - Runtime API - Events
      summary: Ingest events (SDK)
      description: >-
        Push business events from the SDK or any server-to-server caller.
        Processed asynchronously — the endpoint returns 200 immediately and the
        events become queryable within a few seconds.
      operationId: RuntimeEventsController_ingestEvents
      parameters: []
      responses:
        '200':
          description: Events accepted for processing.
      security:
        - bearer: []
components: {}

````