---
title: "Get order details with items"
method: GET
path: "/v1/billing/orders/{id}"
tags: ["Billing"]
---

# Get order details with items

`GET /v1/billing/orders/{id}`

## Path parameters

- `id` string, required

## Response `200`

Order fetched successfully

- OrderWithItemsApiResponseDto
  - `success` boolean, required — Indicates if the request was successful
  - `message` string, required — Human readable message
  - `data` object, required — Response data
    - `id` string, uuid, required — Unique identifier of the order
    - `userId` string, uuid, required — User ID who created the order
    - `stripeCheckoutSessionId` string, required — Stripe checkout session ID
    - `paymentStatus` 'pending' | 'paid' | 'failed' | 'expired', required — Payment status of the order
    - `createdAt` unknown, required
    - `updatedAt` unknown, required
    - `items` object[], required — Order items
      - `id` string, uuid, required — Unique identifier of the order item
      - `orderId` string, uuid, required — Associated order ID
      - `productId` string, uuid, required — Associated product ID
      - `quantity` integer, required — Quantity of the product
      - `unitPrice` integer, required — Unit price at time of purchase in cents
      - `currency` string, required — Currency code
      - `status` 'pending' | 'fulfilled' | 'failed', required — Order item status
      - `createdAt` unknown, required
  - `timestamp` string, date-time, required — Timestamp of the response

---

[API](https://skmtc.dev/maket/apis/virtual-architect-api.md) · [All operations](https://skmtc.dev/maket/apis/virtual-architect-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/maket/virtual-architect-api/revisions/b712097baa9c/schema)
