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

# Get Order Events

> Retrieve the event history for an order

Retrieve the full event history for a specific order. Events are returned in chronological order and represent each state change or notable action that occurred during order processing.

<Tip>
  Use events to build detailed order timelines or to debug issues with order processing.
</Tip>


## OpenAPI

````yaml /versions/latest.json GET /orders/{order_id}/events
openapi: 3.1.0
info:
  title: Zinc
  summary: >-
    Zinc lets you search, buy, and return items from top online retailers with a
    single API.
  description: >-
    Search, buy, and return items from top online retailers with a single API.
    Supports AI agent ordering via MPP (HTTP 402) — no account required.
  version: '2026-04-27'
  x-logo:
    url: https://mintlify.s3.us-west-1.amazonaws.com/zinc/logo/light.png
  x-guidance: >-
    Zinc lets AI agents buy products from online retailers via a single API. Use
    POST /agent/orders to place an order — no Zinc account needed, payment is
    handled via MPP (HTTP 402 flow). Provide a product URL (e.g. Amazon),
    shipping address, and max_price in cents. The API charges max_price + $1 API
    fee upfront and refunds the difference on completion. Authenticated
    endpoints (orders, products, managed-accounts) require a Bearer token (API
    key prefixed zn_). Docs: https://zinc.com/docs
servers:
  - url: https://api.zinc.com
    description: Production
security:
  - BearerAuth: []
paths:
  /orders/{order_id}/events:
    get:
      tags:
        - orders
      summary: Get Order Events
      description: |-
        Get progress events for an order.

        Returns the progress events from the latest non-debug job for the order.
        Users can only see events for their own orders.
      operationId: get_order_events_orders__order_id__events_get
      parameters:
        - name: order_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Order Id
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderEventsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    OrderEventsResponse:
      properties:
        events:
          items:
            $ref: '#/components/schemas/ProgressEventResponse'
          type: array
          title: Events
        job_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Job Id
      type: object
      required:
        - events
        - job_id
      title: OrderEventsResponse
      description: Response model for order progress events.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProgressEventResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        job_id:
          type: string
          format: uuid
          title: Job Id
        event_name:
          type: string
          title: Event Name
        elapsed_seconds:
          anyOf:
            - type: number
            - type: 'null'
          title: Elapsed Seconds
        current_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Current Url
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - job_id
        - event_name
        - elapsed_seconds
        - current_url
        - created_at
      title: ProgressEventResponse
      description: Response model for a single progress event.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Zinc API key (Bearer zn_...)

````