example-data.com

orders

orders

Page 10 of 10.

userId
Vincenza Zemlak-Collier @vincenza_zemlak-collier
status
delivered
currency
USD
subtotal
2393.73
tax
209.45
shipping
0
total
2603.18
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Wendy Borer @wendy_borer
status
refunded
currency
USD
subtotal
2881.27
tax
252.11
shipping
0
total
3133.38
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Allan Buckridge @allan_buckridge
status
cancelled
currency
USD
subtotal
1832.04
tax
160.3
shipping
0
total
1992.34
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Celia D'Amore @celia_damore
status
refunded
currency
USD
subtotal
4218.66
tax
369.13
shipping
0
total
4587.79
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Whitney O'Reilly @whitney.oreilly
status
shipped
currency
USD
subtotal
4543.75
tax
397.58
shipping
0
total
4941.33
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Esperanza Casper @esperanza_casper
status
shipped
currency
USD
subtotal
1260.84
tax
110.32
shipping
0
total
1371.16
placedAt
shippedAt
deliveredAt
createdAt
updatedAt

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/orders?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/orders?limit=25"
);
const { data, meta } = await res.json();
import type { Order, ListEnvelope } from "https://example-data.com/types/orders.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/orders?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Order>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/orders",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 217,
      "userId": 168,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 2393.73,
      "tax": 209.45,
      "shipping": 0,
      "total": 2603.18,
      "placedAt": "2025-02-08T05:51:11.406Z",
      "shippedAt": "2025-02-09T23:28:20.738Z",
      "deliveredAt": "2025-02-15T05:59:18.182Z",
      "createdAt": "2025-02-08T05:51:11.406Z",
      "updatedAt": "2025-02-15T05:59:18.182Z"
    },
    {
      "id": 218,
      "userId": 141,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 2881.27,
      "tax": 252.11,
      "shipping": 0,
      "total": 3133.38,
      "placedAt": "2026-01-24T17:21:34.074Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2026-01-24T17:21:34.074Z",
      "updatedAt": "2026-01-24T17:21:34.074Z"
    },
    {
      "id": 219,
      "userId": 106,
      "status": "cancelled",
      "currency": "USD",
      "subtotal": 1832.04,
      "tax": 160.3,
      "shipping": 0,
      "total": 1992.34,
      "placedAt": "2025-10-10T05:02:46.995Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2025-10-10T05:02:46.995Z",
      "updatedAt": "2025-10-10T05:02:46.995Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=10",
    "next": "/api/v1/orders?page=11",
    "prev": "/api/v1/orders?page=9"
  }
}
Draftbit