example-data.com

carts

carts

Page 2 of 6.

userId
Lamar Wilkinson @lamar_wilkinson43
currency
USD
subtotal
326.72
itemCount
2
updatedAt
createdAt
userId
Everett Yundt @everett_yundt11
currency
USD
subtotal
115.17
itemCount
3
updatedAt
createdAt
userId
Della Labadie @della_labadie
currency
USD
subtotal
3219.96
itemCount
8
updatedAt
createdAt
userId
Lacy Gusikowski @lacy.gusikowski
currency
USD
subtotal
925.06
itemCount
6
updatedAt
createdAt
userId
Maymie Boehm @maymie.boehm90
currency
USD
subtotal
1996.89
itemCount
5
updatedAt
createdAt
userId
Green Kozey @green_kozey22
currency
USD
subtotal
262.7
itemCount
2
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": 25,
      "userId": 43,
      "currency": "USD",
      "subtotal": 326.72,
      "itemCount": 2,
      "updatedAt": "2025-06-18T08:10:04.968Z",
      "createdAt": "2024-06-25T21:54:22.067Z"
    },
    {
      "id": 26,
      "userId": 44,
      "currency": "USD",
      "subtotal": 115.17,
      "itemCount": 3,
      "updatedAt": "2025-07-07T15:03:02.086Z",
      "createdAt": "2025-02-23T10:14:48.650Z"
    },
    {
      "id": 27,
      "userId": 46,
      "currency": "USD",
      "subtotal": 3219.96,
      "itemCount": 8,
      "updatedAt": "2025-10-29T10:52:48.478Z",
      "createdAt": "2025-06-14T09:17:03.995Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 140,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/carts?page=2",
    "next": "/api/v1/carts?page=3",
    "prev": "/api/v1/carts?page=1"
  }
}
Draftbit