example-data.com

orders

orders

Page 9 of 10.

userId
Carmel Schultz @carmel.schultz
status
cancelled
currency
USD
subtotal
1331.94
tax
116.54
shipping
0
total
1448.48
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Kaden Brekke @kaden_brekke
status
cancelled
currency
USD
subtotal
1438.94
tax
125.91
shipping
0
total
1564.85
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Cyril Frami @cyril_frami88
status
delivered
currency
USD
subtotal
905.08
tax
79.19
shipping
0
total
984.27
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Lenny Howe @lenny.howe
status
refunded
currency
USD
subtotal
843.03
tax
73.77
shipping
0
total
916.8
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Lemuel Jast @lemuel.jast27
status
delivered
currency
USD
subtotal
276.9
tax
24.23
shipping
0
total
301.13
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Brycen Bayer @brycen_bayer60
status
shipped
currency
USD
subtotal
887.37
tax
77.64
shipping
0
total
965.01
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": 193,
      "userId": 156,
      "status": "cancelled",
      "currency": "USD",
      "subtotal": 1331.94,
      "tax": 116.54,
      "shipping": 0,
      "total": 1448.48,
      "placedAt": "2025-09-09T10:06:29.354Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2025-09-09T10:06:29.354Z",
      "updatedAt": "2025-09-09T10:06:29.354Z"
    },
    {
      "id": 194,
      "userId": 67,
      "status": "cancelled",
      "currency": "USD",
      "subtotal": 1438.94,
      "tax": 125.91,
      "shipping": 0,
      "total": 1564.85,
      "placedAt": "2025-11-23T14:53:47.238Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2025-11-23T14:53:47.238Z",
      "updatedAt": "2025-11-23T14:53:47.238Z"
    },
    {
      "id": 195,
      "userId": 182,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 905.08,
      "tax": 79.19,
      "shipping": 0,
      "total": 984.27,
      "placedAt": "2025-11-14T01:26:59.610Z",
      "shippedAt": "2025-11-15T16:38:17.894Z",
      "deliveredAt": "2025-11-19T05:14:58.073Z",
      "createdAt": "2025-11-14T01:26:59.610Z",
      "updatedAt": "2025-11-19T05:14:58.073Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=9",
    "next": "/api/v1/orders?page=10",
    "prev": "/api/v1/orders?page=8"
  }
}
Draftbit