example-data.com

orders

orders

Browse 1000 orders records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Wade Upton @wade_upton78
status
shipped
currency
USD
subtotal
1635.7
tax
143.12
shipping
0
total
1778.82
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Malvina Ortiz @malvina_ortiz
status
shipped
currency
USD
subtotal
1183.16
tax
103.53
shipping
0
total
1286.69
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Sammy Schmidt @sammy.schmidt
status
refunded
currency
USD
subtotal
1739
tax
152.16
shipping
0
total
1891.16
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Jacynthe Sawayn @jacynthe_sawayn71
status
shipped
currency
USD
subtotal
245.99
tax
21.52
shipping
0
total
267.51
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Green Kozey @green_kozey22
status
shipped
currency
USD
subtotal
781.59
tax
68.39
shipping
0
total
849.98
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Jadon Nicolas @jadon.nicolas
status
confirmed
currency
USD
subtotal
1276.43
tax
111.69
shipping
0
total
1388.12
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": 1,
      "userId": 129,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 1635.7,
      "tax": 143.12,
      "shipping": 0,
      "total": 1778.82,
      "placedAt": "2025-08-01T09:53:49.279Z",
      "shippedAt": "2025-08-02T11:26:14.340Z",
      "deliveredAt": null,
      "createdAt": "2025-08-01T09:53:49.279Z",
      "updatedAt": "2025-08-02T11:26:14.340Z"
    },
    {
      "id": 2,
      "userId": 234,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 1183.16,
      "tax": 103.53,
      "shipping": 0,
      "total": 1286.69,
      "placedAt": "2025-02-20T04:05:48.842Z",
      "shippedAt": "2025-02-21T09:27:53.696Z",
      "deliveredAt": null,
      "createdAt": "2025-02-20T04:05:48.842Z",
      "updatedAt": "2025-02-21T09:27:53.696Z"
    },
    {
      "id": 3,
      "userId": 186,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 1739,
      "tax": 152.16,
      "shipping": 0,
      "total": 1891.16,
      "placedAt": "2026-04-28T04:09:54.984Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2026-04-28T04:09:54.984Z",
      "updatedAt": "2026-04-28T04:09:54.984Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 1000,
    "totalPages": 40
  },
  "links": {
    "self": "/api/v1/orders?page=1",
    "first": "/api/v1/orders?page=1",
    "last": "/api/v1/orders?page=40",
    "next": "/api/v1/orders?page=2",
    "prev": null
  }
}

View full response →

Draftbit