cart-items
cart-items
Browse 426 cart-items records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- cart-items/1
- cart-items/2
- cart-items/3
- cart-items/4
- cart-items/5
- cart-items/6
- cart-items/7
- cart-items/8
- cart-items/9
- cart-items/10
- cart-items/11
- cart-items/12
- cart-items/13
- cart-items/14
- cart-items/15
- cart-items/16
- cart-items/17
- cart-items/18
- cart-items/19
- cart-items/20
- cart-items/21
- cart-items/22
- cart-items/23
- cart-items/24
- cartId
- carts/1
- productId
-
Refined Bamboo Computer USD47.15
- quantity
- 2
- unitPrice
- 47.15
- addedAt
- cartId
- carts/1
- productId
-
Handcrafted Marble Pizza USD265.39
- quantity
- 3
- unitPrice
- 265.39
- addedAt
- cartId
- carts/1
- productId
-
Modern Gold Computer USD26.69
- quantity
- 4
- unitPrice
- 26.69
- addedAt
- cartId
- carts/2
- productId
-
Licensed Ceramic Shirt USD62.10
- quantity
- 3
- unitPrice
- 62.1
- addedAt
- cartId
- carts/2
- productId
-
Recycled Wooden Towels USD290.75
- quantity
- 2
- unitPrice
- 290.75
- addedAt
- cartId
- carts/2
- productId
-
Refined Plastic Keyboard USD379.19
- quantity
- 3
- unitPrice
- 379.19
- addedAt
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/cart-items?limit=25"const res = await fetch(
"https://example-data.com/api/v1/cart-items?limit=25"
);
const { data, meta } = await res.json();import type { CartItem, ListEnvelope } from "https://example-data.com/types/cart-items.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/cart-items?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CartItem>;import requests
res = requests.get(
"https://example-data.com/api/v1/cart-items",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"cartId": 1,
"productId": 177,
"quantity": 2,
"unitPrice": 47.15,
"addedAt": "2026-03-07T06:07:41.991Z"
},
{
"id": 2,
"cartId": 1,
"productId": 192,
"quantity": 3,
"unitPrice": 265.39,
"addedAt": "2025-12-12T22:44:27.903Z"
},
{
"id": 3,
"cartId": 1,
"productId": 103,
"quantity": 4,
"unitPrice": 26.69,
"addedAt": "2025-10-11T05:34:52.246Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 426,
"totalPages": 18
},
"links": {
"self": "/api/v1/cart-items?page=1",
"first": "/api/v1/cart-items?page=1",
"last": "/api/v1/cart-items?page=18",
"next": "/api/v1/cart-items?page=2",
"prev": null
}
}