example-data.com

orders

orders

Page 5 of 10.

userId
Esperanza Casper @esperanza_casper
status
delivered
currency
USD
subtotal
2150.47
tax
188.17
shipping
0
total
2338.64
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Rosemary Krajcik @rosemary_krajcik
status
shipped
currency
USD
subtotal
3223.78
tax
282.08
shipping
0
total
3505.86
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Lenny Howe @lenny.howe
status
shipped
currency
USD
subtotal
1021.55
tax
89.39
shipping
0
total
1110.94
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Norbert Jacobi @norbert_jacobi92
status
refunded
currency
USD
subtotal
3052.72
tax
267.11
shipping
0
total
3319.83
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Amari Koch @amari.koch
status
confirmed
currency
USD
subtotal
257.47
tax
22.53
shipping
0
total
280
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Audreanne Will @audreanne_will
status
cancelled
currency
USD
subtotal
1825.28
tax
159.71
shipping
0
total
1984.99
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": 97,
      "userId": 97,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 2150.47,
      "tax": 188.17,
      "shipping": 0,
      "total": 2338.64,
      "placedAt": "2024-12-15T14:50:20.228Z",
      "shippedAt": "2024-12-18T02:28:56.375Z",
      "deliveredAt": "2024-12-21T03:39:45.539Z",
      "createdAt": "2024-12-15T14:50:20.228Z",
      "updatedAt": "2024-12-21T03:39:45.539Z"
    },
    {
      "id": 98,
      "userId": 191,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 3223.78,
      "tax": 282.08,
      "shipping": 0,
      "total": 3505.86,
      "placedAt": "2024-11-23T21:27:06.158Z",
      "shippedAt": "2024-11-26T04:01:31.549Z",
      "deliveredAt": null,
      "createdAt": "2024-11-23T21:27:06.158Z",
      "updatedAt": "2024-11-26T04:01:31.549Z"
    },
    {
      "id": 99,
      "userId": 37,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 1021.55,
      "tax": 89.39,
      "shipping": 0,
      "total": 1110.94,
      "placedAt": "2026-02-15T14:14:25.420Z",
      "shippedAt": "2026-02-17T10:34:29.360Z",
      "deliveredAt": null,
      "createdAt": "2026-02-15T14:14:25.420Z",
      "updatedAt": "2026-02-17T10:34:29.360Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=5",
    "next": "/api/v1/orders?page=6",
    "prev": "/api/v1/orders?page=4"
  }
}
Draftbit