example-data.com
Menu
Browse docs and collections

orders

orders

Page 13 of 42.

Overview

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/orders?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/orders?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/orders.d.ts https://example-data.com/types/orders.d.ts
import type { Order, ListEnvelope } from "./types/orders";

const res = await fetch(
  "https://example-data.com/api/v1/orders?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Order>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/orders",
    params={"limit": 25},
)
data = res.json()

Response

{
  "data": [
    {
      "id": 289,
      "userId": 46,
      "status": "refunded",
      "currency": "USD",
      "subtotal": 1705.52,
      "tax": 149.23,
      "shipping": 0,
      "total": 1854.75,
      "placedAt": "2024-08-28T10:44:00.181Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2024-08-28T10:44:00.181Z",
      "updatedAt": "2024-08-28T10:44:00.181Z"
    },
    {
      "id": 290,
      "userId": 161,
      "status": "confirmed",
      "currency": "USD",
      "subtotal": 1037.13,
      "tax": 90.75,
      "shipping": 0,
      "total": 1127.88,
      "placedAt": "2025-04-28T19:16:32.984Z",
      "shippedAt": null,
      "deliveredAt": null,
      "createdAt": "2025-04-28T19:16:32.984Z",
      "updatedAt": "2025-04-28T19:16:32.984Z"
    },
    {
      "id": 291,
      "userId": 239,
      "status": "shipped",
      "currency": "USD",
      "subtotal": 1446.6,
      "tax": 126.58,
      "shipping": 0,
      "total": 1573.18,
      "placedAt": "2025-02-19T08:01:54.942Z",
      "shippedAt": "2025-02-21T04:09:12.954Z",
      "deliveredAt": null,
      "createdAt": "2025-02-19T08:01:54.942Z",
      "updatedAt": "2025-02-21T04:09:12.954Z"
    }
  ],
  "meta": {
    "page": 13,
    "limit": 24,
    "total": 1000,
    "totalPages": 42
  },
  "links": {
    "self": "/api/v1/orders?page=13&limit=24",
    "first": "/api/v1/orders?page=1&limit=24",
    "last": "/api/v1/orders?page=42&limit=24",
    "next": "/api/v1/orders?page=14&limit=24",
    "prev": "/api/v1/orders?page=12&limit=24"
  }
}