example-data.com

carts

carts

Page 6 of 6.

userId
Dasia Volkman @dasia_volkman65
currency
USD
subtotal
5049.63
itemCount
13
updatedAt
createdAt
userId
Joseph Steuber @joseph_steuber
currency
USD
subtotal
2166.8
itemCount
10
updatedAt
createdAt
userId
Loren Schmidt @loren_schmidt
currency
USD
subtotal
2333.27
itemCount
9
updatedAt
createdAt
userId
Lilly Rosenbaum @lilly.rosenbaum
currency
USD
subtotal
2185.21
itemCount
6
updatedAt
createdAt
userId
Simeon Heathcote @simeon_heathcote75
currency
USD
subtotal
830.03
itemCount
3
updatedAt
createdAt
userId
Matt Kuhic @matt_kuhic57
currency
USD
subtotal
2611.13
itemCount
13
updatedAt
createdAt

Showing first 6 of 20 on this page.

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

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

res = requests.get(
    "https://example-data.com/api/v1/carts",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 121,
      "userId": 219,
      "currency": "USD",
      "subtotal": 5049.63,
      "itemCount": 13,
      "updatedAt": "2025-10-27T12:30:45.161Z",
      "createdAt": "2025-03-17T11:33:55.905Z"
    },
    {
      "id": 122,
      "userId": 221,
      "currency": "USD",
      "subtotal": 2166.8,
      "itemCount": 10,
      "updatedAt": "2025-08-10T20:21:35.333Z",
      "createdAt": "2025-07-24T12:34:57.173Z"
    },
    {
      "id": 123,
      "userId": 222,
      "currency": "USD",
      "subtotal": 2333.27,
      "itemCount": 9,
      "updatedAt": "2026-04-10T21:48:22.383Z",
      "createdAt": "2025-07-05T04:17:21.428Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 140,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/carts?page=6",
    "next": null,
    "prev": "/api/v1/carts?page=5"
  }
}
Draftbit