example-data.com

order-items

order-items

Page 2 of 10.

curl -sS \
  "https://example-data.com/api/v1/order-items?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/order-items?limit=25"
);
const { data, meta } = await res.json();
import type { OrderItem, ListEnvelope } from "https://example-data.com/types/order-items.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/order-items",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "orderId": 10,
      "productId": 101,
      "quantity": 4,
      "unitPrice": 264.75,
      "lineTotal": 1059
    },
    {
      "id": 26,
      "orderId": 10,
      "productId": 98,
      "quantity": 4,
      "unitPrice": 345.69,
      "lineTotal": 1382.76
    },
    {
      "id": 27,
      "orderId": 10,
      "productId": 129,
      "quantity": 2,
      "unitPrice": 418.99,
      "lineTotal": 837.98
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 2964,
    "totalPages": 124
  },
  "links": {
    "self": "/api/v1/order-items?page=2",
    "next": "/api/v1/order-items?page=3",
    "prev": "/api/v1/order-items?page=1"
  }
}
Draftbit