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

# Converse stream (Bedrock wire format)

> Bedrock ConverseStream wire format — responses are real AWS binary event streams (application/vnd.amazon.eventstream) with per-frame CRC32 checksums.



## OpenAPI

````yaml /api-reference/openapi.json post /model/{modelId}/converse-stream
openapi: 3.0.3
info:
  title: AI Reserve Gateway API
  description: >-
    The AI Reserve AI gateway REST surface — OpenAI-compatible chat completions,
    Anthropic-compatible messages, Bedrock Converse, images, video, and files
    behind one endpoint and one API key.
  version: 1.0.0
servers:
  - url: https://api.aireserve.com
security:
  - bearerAuth: []
paths:
  /model/{modelId}/converse-stream:
    post:
      tags:
        - Bedrock
      summary: Converse stream (Bedrock wire format)
      description: >-
        Bedrock ConverseStream wire format — responses are real AWS binary event
        streams (application/vnd.amazon.eventstream) with per-frame CRC32
        checksums.
      parameters:
        - name: modelId
          in: path
          required: true
          description: >-
            AI Reserve model ID (e.g. claude-sonnet-4-6-bedrock) or a supported
            AWS Bedrock model id / inference-profile ARN.
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
            example:
              messages:
                - role: user
                  content:
                    - text: Write me a haiku.
      responses:
        '200':
          description: Default Response
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your AI Reserve API key (aireserve_api_…) from Profile → My API Keys in
        the portal.

````