example-data.com

carts

carts

Browse 140 carts records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

userId
Amina King @amina_king41
currency
USD
subtotal
997.23
itemCount
9
updatedAt
createdAt
userId
Conner Bernhard @conner.bernhard33
currency
USD
subtotal
1905.37
itemCount
8
updatedAt
createdAt
userId
Cayla Farrell @cayla_farrell
currency
USD
subtotal
963.88
itemCount
7
updatedAt
createdAt
userId
Webster Skiles @webster_skiles39
currency
USD
subtotal
897.56
itemCount
4
updatedAt
createdAt
userId
Brycen Bayer @brycen_bayer60
currency
USD
subtotal
1945.16
itemCount
4
updatedAt
createdAt
userId
Einar Volkman @einar_volkman69
currency
USD
subtotal
4832.12
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": 1,
      "userId": 2,
      "currency": "USD",
      "subtotal": 997.23,
      "itemCount": 9,
      "updatedAt": "2025-07-02T05:16:37.152Z",
      "createdAt": "2024-09-13T04:12:14.210Z"
    },
    {
      "id": 2,
      "userId": 3,
      "currency": "USD",
      "subtotal": 1905.37,
      "itemCount": 8,
      "updatedAt": "2025-11-03T11:43:02.981Z",
      "createdAt": "2024-11-29T19:41:51.515Z"
    },
    {
      "id": 3,
      "userId": 4,
      "currency": "USD",
      "subtotal": 963.88,
      "itemCount": 7,
      "updatedAt": "2025-11-26T01:08:32.530Z",
      "createdAt": "2025-05-29T11:49:49.057Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 140,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/carts?page=1",
    "first": "/api/v1/carts?page=1",
    "last": "/api/v1/carts?page=6",
    "next": "/api/v1/carts?page=2",
    "prev": null
  }
}

View full response →

Draftbit