Skip to main content
GET
https://api.trycase.ai/api/v1
/
orders
/
{id}
curl -X GET "https://api.trycase.ai/api/v1/orders/ord_2025_0042" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "ord_2025_0042",
  "order_number": "ORD-2025-0042",
  "status": "shipped",
  "supplier": {
    "id": "sup_xyz789",
    "name": "Stag's Leap Wine Cellars",
    "address": "5766 Silverado Trail, Napa, CA 94558"
  },
  "items": [
    {
      "id": "item_001",
      "product_id": "prod_abc123",
      "product_name": "2021 Reserve Cabernet Sauvignon",
      "quantity": 2,
      "unit_price_cents": 24000,
      "total_cents": 48000
    },
    {
      "id": "item_002",
      "product_id": "prod_def456",
      "product_name": "2022 Chardonnay",
      "quantity": 1,
      "unit_price_cents": 18000,
      "total_cents": 18000
    }
  ],
  "subtotal_cents": 66000,
  "shipping_cents": 6000,
  "platform_fee_cents": 2500,
  "total_cents": 74500,
  "shipping_address": {
    "street1": "123 Market Street",
    "city": "San Francisco",
    "state": "CA",
    "zip": "94102"
  },
  "tracking": {
    "carrier": "FedEx",
    "tracking_number": "1234567890",
    "tracking_url": "https://fedex.com/track/1234567890",
    "estimated_delivery": "2025-01-18"
  },
  "buyer_notes": "Please include tech sheets",
  "timeline": [
    {"event": "order_placed", "timestamp": "2025-01-15T14:30:00Z"},
    {"event": "order_confirmed", "timestamp": "2025-01-15T14:30:05Z"},
    {"event": "order_shipped", "timestamp": "2025-01-16T09:00:00Z"}
  ],
  "created_at": "2025-01-15T14:30:00Z",
  "confirmed_at": "2025-01-15T14:30:05Z",
  "shipped_at": "2025-01-16T09:00:00Z"
}

Get Order

Retrieve detailed information about a specific order, including tracking info and timeline.
id
string
required
The unique order ID
curl -X GET "https://api.trycase.ai/api/v1/orders/ord_2025_0042" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "ord_2025_0042",
  "order_number": "ORD-2025-0042",
  "status": "shipped",
  "supplier": {
    "id": "sup_xyz789",
    "name": "Stag's Leap Wine Cellars",
    "address": "5766 Silverado Trail, Napa, CA 94558"
  },
  "items": [
    {
      "id": "item_001",
      "product_id": "prod_abc123",
      "product_name": "2021 Reserve Cabernet Sauvignon",
      "quantity": 2,
      "unit_price_cents": 24000,
      "total_cents": 48000
    },
    {
      "id": "item_002",
      "product_id": "prod_def456",
      "product_name": "2022 Chardonnay",
      "quantity": 1,
      "unit_price_cents": 18000,
      "total_cents": 18000
    }
  ],
  "subtotal_cents": 66000,
  "shipping_cents": 6000,
  "platform_fee_cents": 2500,
  "total_cents": 74500,
  "shipping_address": {
    "street1": "123 Market Street",
    "city": "San Francisco",
    "state": "CA",
    "zip": "94102"
  },
  "tracking": {
    "carrier": "FedEx",
    "tracking_number": "1234567890",
    "tracking_url": "https://fedex.com/track/1234567890",
    "estimated_delivery": "2025-01-18"
  },
  "buyer_notes": "Please include tech sheets",
  "timeline": [
    {"event": "order_placed", "timestamp": "2025-01-15T14:30:00Z"},
    {"event": "order_confirmed", "timestamp": "2025-01-15T14:30:05Z"},
    {"event": "order_shipped", "timestamp": "2025-01-16T09:00:00Z"}
  ],
  "created_at": "2025-01-15T14:30:00Z",
  "confirmed_at": "2025-01-15T14:30:05Z",
  "shipped_at": "2025-01-16T09:00:00Z"
}