Skip to main content
GET
/
stores
/
{storeId}
/
orders
/
{orderId}
cURL
curl --request GET \
  --url https://api.pandabase.io/v2/core/stores/{storeId}/orders/{orderId} \
  --header 'Authorization: Bearer <token>'
{
  "ok": true,
  "data": {
    "id": "ord_p2v8q1mzj0kxw5h7n4tr3bcf",
    "orderNumber": "cs_abcdef0123456789",
    "status": "COMPLETED",
    "amount": 2900,
    "currency": "USD",
    "discounted": false,
    "discountCode": null,
    "customer": {
      "id": "cus_j8h0r1n4tzcbfp2v8q1mzwx5",
      "email": "buyer@example.com"
    },
    "payment": {
      "id": "pmt_5h7n4tr3bcfp2v8q1mzj0kxw",
      "referenceId": "pi_3OXxxxxx0123456789ABCDEF",
      "amount": 2900,
      "discountAmount": 0,
      "platformFeeAmount": 191,
      "pspFeeAmount": 114,
      "taxAmount": 20,
      "totalAmount": 2920,
      "settledAmount": 2615,
      "presentmentCurrency": null,
      "presentmentAmount": null,
      "exchangeRate": null,
      "status": "COMPLETED",
      "pspProvider": "MULTI_PSP",
      "couponCode": null,
      "taxId": null,
      "createdAt": "2026-05-14T12:34:56.000Z"
    },
    "createdAt": "2026-05-14T12:34:56.000Z",
    "presentmentCurrency": null,
    "presentmentAmount": null,
    "exchangeRate": null,
    "customFields": null,
    "metadata": null,
    "returnUrl": null,
    "items": [
      {
        "id": "itm_3bcfp2v8q1mzj0kxw5h7n4tr",
        "productId": "prd_8h4t6sqzy3x9w5n2k1m0vqbf",
        "variantId": null,
        "name": "Pro Plan",
        "quantity": 1,
        "price": 2900
      }
    ],
    "billingAddress": {
      "id": "badr_w5h7n4tr3bcfp2v8q1mzj0kx",
      "addressLine1": "1 Market St",
      "addressLine2": null,
      "city": "San Francisco",
      "state": "CA",
      "postalCode": "94105",
      "country": "US"
    },
    "licenses": [],
    "updatedAt": "2026-05-14T12:35:10.000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.pandabase.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token mode — passes the secret directly. Token starts with sk_.

Path Parameters

storeId
string
required
Required string length: 12 - 48
orderId
string
required
Required string length: 12 - 48

Response

Default Response

ok
enum<boolean>
required
Available options:
true
data
any
required