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

# Stream status

> Opens a Server-Sent Events (SSE) stream for real-time status updates on a Payment Intent. The stream emits events on every state transition.



## OpenAPI

````yaml GET /intents/{id}/stream
openapi: 3.1.0
info:
  title: Crycket API
  description: >-
    Payment infrastructure API enabling peer-to-peer and merchant-to-consumer
    stablecoin payments on Solana, Base, and Tempo.
  version: 1.0.0
servers:
  - url: https://api.crycketpay.com/v1
    description: Production
security:
  - bearerAuth: []
paths:
  /intents/{id}/stream:
    get:
      summary: Stream intent status
      description: >-
        Opens a Server-Sent Events (SSE) stream for real-time status updates on
        a Payment Intent. The stream emits events on every state transition.
      operationId: streamIntent
      parameters:
        - name: id
          in: path
          required: true
          description: The Payment Intent ID
          schema:
            type: string
      responses:
        '200':
          description: SSE stream of intent status updates
          content:
            text/event-stream:
              schema:
                type: string
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: >-
                Machine-readable error code in `resource.error_type` dot
                notation
              example: intent.already_fulfilled
            message:
              type: string
              description: Human-readable error message
            param:
              type:
                - string
                - 'null'
              description: Field name if this is a validation error
            details:
              type:
                - object
                - 'null'
              description: Additional context about the error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key. Use `pk_live_*` for production or `pk_test_*` for test mode.

````