example-data.com

orders

orders

Page 2 of 10.

userId
Lamar Wilkinson @lamar_wilkinson43
status
refunded
currency
USD
subtotal
345.69
tax
30.25
shipping
0
total
375.94
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Alexa Rippin @alexa_rippin25
status
shipped
currency
USD
subtotal
1150.06
tax
100.63
shipping
0
total
1250.69
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Dasia Volkman @dasia_volkman65
status
cancelled
currency
USD
subtotal
2020.12
tax
176.76
shipping
0
total
2196.88
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Fritz Skiles @fritz_skiles
status
cancelled
currency
USD
subtotal
3928.81
tax
343.77
shipping
0
total
4272.58
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Adelia Roberts @adelia_roberts0
status
pending
currency
USD
subtotal
1377.02
tax
120.49
shipping
0
total
1497.51
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Amari Koch @amari.koch
status
cancelled
currency
USD
subtotal
344.72
tax
30.16
shipping
0
total
374.88
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": 25,
      "userId": 43,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 345.69,
      "tax": 30.25,
      "shipping": 0,
      "total": 375.94,
      "placedAt": "2024-06-15T20:20:09.383Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2024-06-15T20:20:09.383Z",
      "updatedAt": "2024-06-15T20:20:09.383Z"
    },
    {
      "id": 26,
      "userId": 235,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 1150.06,
      "tax": 100.63,
      "shipping": 0,
      "total": 1250.69,
      "placedAt": "2025-11-12T14:49:38.981Z",
      "shippedAt": "2025-11-14T18:33:05.365Z",
      "deliveredAt": null,
      "createdAt": "2025-11-12T14:49:38.981Z",
      "updatedAt": "2025-11-14T18:33:05.365Z"
    },
    {
      "id": 27,
      "userId": 219,
      "status": "cancelled",
      "currency": "USD",
      "subtotal": 2020.12,
      "tax": 176.76,
      "shipping": 0,
      "total": 2196.88,
      "placedAt": "2026-04-19T05:11:39.608Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2026-04-19T05:11:39.608Z",
      "updatedAt": "2026-04-19T05:11:39.608Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=2",
    "next": "/api/v1/orders?page=3",
    "prev": "/api/v1/orders?page=1"
  }
}
Draftbit