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

# Get order status

> Returns status, payment, items, and fulfillment/tracking for one of your
practice's orders. Orders belonging to other organizations return 404.

**Scope required:** `orders:read`.




## OpenAPI

````yaml /practice-api/openapi.yaml get /orders/{id}
openapi: 3.0.3
info:
  title: VitaRelay Practice API
  version: 1.0.0
  description: >
    The Practice API is for provider practices that prescribe with their OWN
    licensed

    prescribers (NPI/DEA/license on file with VitaRelay). VitaRelay is logistics
    and

    fulfillment only — your own provider is the prescriber of record.


    No cost, pharmacy, margin, or price data is ever exposed through this API.
servers:
  - url: https://vitarelay.com/api/public/practice/v1
security:
  - bearerAuth: []
tags:
  - name: Catalog
    description: Unified 503A / 503B / R&D catalog (no pricing).
  - name: Orders
    description: Place and track orders for your own patients.
  - name: Prescribers
    description: >-
      Manage your practice's prescriber roster. NPI and DEA are validated by
      format and checksum only — this is not a NPPES or DEA registry lookup. DEA
      numbers are always masked in responses.
paths:
  /orders/{id}:
    get:
      tags:
        - Orders
      summary: Get order status
      description: |
        Returns status, payment, items, and fulfillment/tracking for one of your
        practice's orders. Orders belonging to other organizations return 404.

        **Scope required:** `orders:read`.
      operationId: getOrder
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: The order.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Order'
              example:
                data:
                  id: 9b1c7e42-0000-0000-0000-0000000000aa
                  order_number: VR-100482
                  status: paid
                  payment_status: paid
                  reference: po-2026-0042
                  total_cents: 3056
                  currency: USD
                  items:
                    - product_id: 7c2d5e10-0000-0000-0000-0000000000df
                      quantity: 2
                      unit_price_cents: 1528
                  created_at: '2026-08-27T14:05:00Z'
                  fulfillment:
                    status: shipped
                    tracking_number: '794600000000'
                    tracking_carrier: FedEx
                    tracking_url: https://www.fedex.com/fedextrack/?trknbr=794600000000
                    shipped_at: '2026-08-28T16:20:00Z'
        '401':
          $ref: '#/components/responses/Error'
        '403':
          $ref: '#/components/responses/Error'
        '404':
          $ref: '#/components/responses/Error'
        '429':
          $ref: '#/components/responses/Error'
components:
  schemas:
    Order:
      type: object
      properties:
        id:
          type: string
          format: uuid
        order_number:
          type: string
          nullable: true
        status:
          type: string
          description: e.g. pending, paid, fulfilled, cancelled.
        payment_status:
          type: string
          description: e.g. awaiting_payment, paid, refunded.
        reference:
          type: string
          nullable: true
          description: Your external_order_id echoed back, if one was supplied.
        total_cents:
          type: integer
        currency:
          type: string
        items:
          type: array
          items:
            type: object
            properties:
              product_id:
                type: string
                format: uuid
                nullable: true
              quantity:
                type: integer
              unit_price_cents:
                type: integer
                description: The platform price charged per unit.
        created_at:
          type: string
          format: date-time
        fulfillment:
          type: object
          nullable: true
          properties:
            status:
              type: string
              nullable: true
            tracking_number:
              type: string
              nullable: true
            tracking_carrier:
              type: string
              nullable: true
            tracking_url:
              type: string
              nullable: true
            shipped_at:
              type: string
              format: date-time
              nullable: true
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
  responses:
    Error:
      description: Error envelope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Practice API key (`vr_live_...` or `vr_test_...`).

````