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

# Retrieve order details

> This endpoint retrieves detailed information about a specific order by its `id`. The `x-store-id` header is needed for authentication. The response includes order status, amounts, taxes, items, and linked customer and product details.



## OpenAPI

````yaml /api-reference/blink-api.json get /v1/orders/{id}
openapi: 3.0.0
info:
  title: Blink API
  description: Comprehensive API documentation for Blink.
  version: 1.0.0
servers:
  - url: https://api.blink.store/v1
security:
  - storeIdHeader: []
tags:
  - name: Invoices
    description: Unified merchant of record invoices for products and subscriptions.
  - name: Geo Pricing
    description: Resolve Purchasing Power Parity (PPP) localized pricing.
paths:
  /v1/orders/{id}:
    get:
      tags:
        - Orders
      summary: Retrieve order details
      description: >-
        This endpoint retrieves detailed information about a specific order by
        its `id`. The `x-store-id` header is needed for authentication. The
        response includes order status, amounts, taxes, items, and linked
        customer and product details.
      parameters:
        - name: id
          in: path
          required: true
          description: ID of the order to retrieve.
          schema:
            type: string
      responses:
        '200':
          description: Order details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrderDetails'
        '401':
          description: Unauthorized - Store ID header missing.
        '404':
          description: Order not found.
        '500':
          description: Internal Server Error.
      security:
        - storeIdHeader: []
components:
  schemas:
    OrderDetails:
      type: object
      properties:
        id:
          type: string
        store_id:
          type: string
        status:
          type: string
        amount:
          type: number
        net_amount:
          type: number
        tax_amount:
          type: number
        tax_breakdown:
          type: object
        customer_country:
          type: string
        business_name:
          type: string
        customer_tax_id:
          type: string
        is_recovery_conversion:
          type: boolean
        created_at:
          type: string
          format: date-time
        customer:
          type: object
          properties:
            id:
              type: string
            name:
              type: string
            email:
              type: string
        order_items:
          type: array
          items:
            type: object
            properties:
              product_id:
                type: string
              variant_id:
                type: string
              price:
                type: number
              quantity:
                type: integer
  securitySchemes:
    storeIdHeader:
      type: apiKey
      in: header
      name: x-store-id

````