example-data.com

orders

orders

Page 6 of 10.

userId
Amparo Dietrich @amparo.dietrich
status
delivered
currency
USD
subtotal
768.88
tax
67.28
shipping
0
total
836.16
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Telly Sanford @telly.sanford
status
shipped
currency
USD
subtotal
945.16
tax
82.7
shipping
0
total
1027.86
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Kariane Schmitt @kariane.schmitt97
status
confirmed
currency
USD
subtotal
764.97
tax
66.93
shipping
0
total
831.9
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Sam Hegmann-Jast @sam_hegmann-jast86
status
cancelled
currency
USD
subtotal
3939.12
tax
344.67
shipping
0
total
4283.79
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Selina Flatley @selina_flatley
status
confirmed
currency
USD
subtotal
1923.16
tax
168.28
shipping
0
total
2091.44
placedAt
shippedAt
deliveredAt
createdAt
updatedAt
userId
Wilton Dietrich @wilton.dietrich23
status
refunded
currency
USD
subtotal
318.7
tax
27.89
shipping
0
total
346.59
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": 121,
      "userId": 159,
      "status": "delivered",
      "currency": "USD",
      "subtotal": 768.88,
      "tax": 67.28,
      "shipping": 0,
      "total": 836.16,
      "placedAt": "2025-07-08T01:04:47.638Z",
      "shippedAt": "2025-07-10T11:21:04.630Z",
      "deliveredAt": "2025-07-12T13:23:50.542Z",
      "createdAt": "2025-07-08T01:04:47.638Z",
      "updatedAt": "2025-07-12T13:23:50.542Z"
    },
    {
      "id": 122,
      "userId": 123,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 945.16,
      "tax": 82.7,
      "shipping": 0,
      "total": 1027.86,
      "placedAt": "2024-06-28T02:30:07.051Z",
      "shippedAt": "2024-06-29T14:55:21.873Z",
      "deliveredAt": null,
      "createdAt": "2024-06-28T02:30:07.051Z",
      "updatedAt": "2024-06-29T14:55:21.873Z"
    },
    {
      "id": 123,
      "userId": 32,
      "status": "confirmed",
      "currency": "USD",
      "subtotal": 764.97,
      "tax": 66.93,
      "shipping": 0,
      "total": 831.9,
      "placedAt": "2024-11-23T10:12:22.542Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2024-11-23T10:12:22.542Z",
      "updatedAt": "2024-11-23T10:12:22.542Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=6",
    "next": "/api/v1/orders?page=7",
    "prev": "/api/v1/orders?page=5"
  }
}
Draftbit