example-data.com

carts

carts

Page 4 of 6.

userId
Eveline Emard @eveline.emard
currency
USD
subtotal
2208.56
itemCount
8
updatedAt
createdAt
userId
Maria Senger @maria.senger
currency
USD
subtotal
794.61
itemCount
6
updatedAt
createdAt
userId
Lennie Dickinson @lennie_dickinson8
currency
USD
subtotal
2817.86
itemCount
6
updatedAt
createdAt
userId
Nikko Kuhlman @nikko_kuhlman
currency
USD
subtotal
451.06
itemCount
2
updatedAt
createdAt
userId
Audreanne Will @audreanne_will
currency
USD
subtotal
1283.27
itemCount
7
updatedAt
createdAt
userId
Maximus Bosco @maximus_bosco
currency
USD
subtotal
2800.4
itemCount
16
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": 73,
      "userId": 118,
      "currency": "USD",
      "subtotal": 2208.56,
      "itemCount": 8,
      "updatedAt": "2025-11-07T19:15:52.872Z",
      "createdAt": "2025-06-17T12:26:03.329Z"
    },
    {
      "id": 74,
      "userId": 120,
      "currency": "USD",
      "subtotal": 794.61,
      "itemCount": 6,
      "updatedAt": "2025-11-01T16:10:41.292Z",
      "createdAt": "2025-07-19T21:22:58.215Z"
    },
    {
      "id": 75,
      "userId": 121,
      "currency": "USD",
      "subtotal": 2817.86,
      "itemCount": 6,
      "updatedAt": "2026-03-18T12:31:55.289Z",
      "createdAt": "2025-07-21T08:37:08.804Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 140,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/carts?page=4",
    "next": "/api/v1/carts?page=5",
    "prev": "/api/v1/carts?page=3"
  }
}
Draftbit