example-data.com

orders

orders

Page 8 of 10.

userId
Leonel Hamill @leonel_hamill33
status
refunded
currency
USD
subtotal
910.29
tax
79.65
shipping
0
total
989.94
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Alvena Emmerich @alvena_emmerich52
status
delivered
currency
USD
subtotal
807.72
tax
70.68
shipping
0
total
878.4
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Tabitha McKenzie @tabitha_mckenzie
status
refunded
currency
USD
subtotal
1249.73
tax
109.35
shipping
0
total
1359.08
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Lennie Dickinson @lennie_dickinson8
status
confirmed
currency
USD
subtotal
2884.1
tax
252.36
shipping
0
total
3136.46
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Tabitha Ruecker @tabitha.ruecker
status
cancelled
currency
USD
subtotal
928.74
tax
81.26
shipping
0
total
1010
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Ludwig Stiedemann @ludwig_stiedemann
status
shipped
currency
USD
subtotal
556.35
tax
48.68
shipping
0
total
605.03
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": 169,
      "userId": 11,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 910.29,
      "tax": 79.65,
      "shipping": 0,
      "total": 989.94,
      "placedAt": "2026-02-15T16:49:00.964Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2026-02-15T16:49:00.964Z",
      "updatedAt": "2026-02-15T16:49:00.964Z"
    },
    {
      "id": 170,
      "userId": 8,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 807.72,
      "tax": 70.68,
      "shipping": 0,
      "total": 878.4,
      "placedAt": "2025-06-03T07:46:43.445Z",
      "shippedAt": "2025-06-05T20:10:34.418Z",
      "deliveredAt": "2025-06-11T11:54:14.529Z",
      "createdAt": "2025-06-03T07:46:43.445Z",
      "updatedAt": "2025-06-11T11:54:14.529Z"
    },
    {
      "id": 171,
      "userId": 98,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 1249.73,
      "tax": 109.35,
      "shipping": 0,
      "total": 1359.08,
      "placedAt": "2024-09-18T22:58:39.576Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2024-09-18T22:58:39.576Z",
      "updatedAt": "2024-09-18T22:58:39.576Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=8",
    "next": "/api/v1/orders?page=9",
    "prev": "/api/v1/orders?page=7"
  }
}
Draftbit