example-data.com

orders

orders

Page 3 of 10.

userId
Hermina West @hermina.west3
status
cancelled
currency
USD
subtotal
2561.48
tax
224.13
shipping
0
total
2785.61
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Trace Witting-Stamm @trace_witting-stamm17
status
delivered
currency
USD
subtotal
623.36
tax
54.54
shipping
0
total
677.9
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Jensen Bashirian @jensen_bashirian
status
delivered
currency
USD
subtotal
1013.25
tax
88.66
shipping
0
total
1101.91
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Beau Stiedemann @beau.stiedemann
status
cancelled
currency
USD
subtotal
1640.87
tax
143.58
shipping
0
total
1784.45
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Dwight Dicki-Medhurst @dwight.dicki-medhurst69
status
confirmed
currency
USD
subtotal
2459.08
tax
215.17
shipping
0
total
2674.25
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Ken Towne @ken.towne
status
cancelled
currency
USD
subtotal
4671.1
tax
408.72
shipping
0
total
5079.82
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": 49,
      "userId": 51,
      "status": "cancelled",
      "currency": "USD",
      "subtotal": 2561.48,
      "tax": 224.13,
      "shipping": 0,
      "total": 2785.61,
      "placedAt": "2024-06-10T04:05:04.574Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2024-06-10T04:05:04.574Z",
      "updatedAt": "2024-06-10T04:05:04.574Z"
    },
    {
      "id": 50,
      "userId": 42,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 623.36,
      "tax": 54.54,
      "shipping": 0,
      "total": 677.9,
      "placedAt": "2024-12-12T17:46:44.300Z",
      "shippedAt": "2024-12-14T15:01:15.522Z",
      "deliveredAt": "2024-12-16T18:34:48.233Z",
      "createdAt": "2024-12-12T17:46:44.300Z",
      "updatedAt": "2024-12-16T18:34:48.233Z"
    },
    {
      "id": 51,
      "userId": 29,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 1013.25,
      "tax": 88.66,
      "shipping": 0,
      "total": 1101.91,
      "placedAt": "2025-12-02T07:00:43.631Z",
      "shippedAt": "2025-12-04T09:47:33.283Z",
      "deliveredAt": "2025-12-10T18:36:28.479Z",
      "createdAt": "2025-12-02T07:00:43.631Z",
      "updatedAt": "2025-12-10T18:36:28.479Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=3",
    "next": "/api/v1/orders?page=4",
    "prev": "/api/v1/orders?page=2"
  }
}
Draftbit