example-data.com

carts

carts

Page 5 of 6.

userId
Vincenza Zemlak-Collier @vincenza_zemlak-collier
currency
USD
subtotal
772.13
itemCount
5
updatedAt
createdAt
userId
Kamryn Rogahn @kamryn_rogahn40
currency
USD
subtotal
1449.53
itemCount
7
updatedAt
createdAt
userId
Kaleb Schmidt @kaleb.schmidt
currency
USD
subtotal
5969.88
itemCount
16
updatedAt
createdAt
userId
Elvis Littel-Vandervort @elvis.littel-vandervort28
currency
USD
subtotal
2690.02
itemCount
11
updatedAt
createdAt
userId
Fatima Dicki @fatima_dicki
currency
USD
subtotal
4346.34
itemCount
14
updatedAt
createdAt
userId
Ismael Ward @ismael_ward
currency
USD
subtotal
3629.17
itemCount
9
updatedAt
createdAt

Showing first 6 of 24 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": 97,
      "userId": 168,
      "currency": "USD",
      "subtotal": 772.13,
      "itemCount": 5,
      "updatedAt": "2025-07-29T03:35:56.595Z",
      "createdAt": "2025-04-17T14:33:26.093Z"
    },
    {
      "id": 98,
      "userId": 170,
      "currency": "USD",
      "subtotal": 1449.53,
      "itemCount": 7,
      "updatedAt": "2026-03-04T19:39:17.040Z",
      "createdAt": "2025-12-12T01:07:46.050Z"
    },
    {
      "id": 99,
      "userId": 171,
      "currency": "USD",
      "subtotal": 5969.88,
      "itemCount": 16,
      "updatedAt": "2025-08-27T22:07:01.403Z",
      "createdAt": "2025-07-25T16:33:24.579Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 140,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/carts?page=5",
    "next": "/api/v1/carts?page=6",
    "prev": "/api/v1/carts?page=4"
  }
}
Draftbit