categories
categories
Page 2 of 2.
Overview
-
Non-Fiction
Biographies, history, science, self-help, and reference books.
-
Music
Digital albums, vinyl records, and music streaming gift cards.
-
Skincare
Moisturizers, serums, cleansers, and sunscreen for face and body.
-
Hair Care
Shampoos, conditioners, styling products, and hair tools.
-
Vitamins & Supplements
Multivitamins, protein powders, and wellness supplements.
-
Fresh Produce
Fruits, vegetables, herbs, and organic farming products.
-
Snacks & Confectionery
Chips, chocolate, candy, cookies, and other snack foods.
-
Beverages
Soft drinks, juices, coffee, tea, and alcoholic beverages.
-
Action Figures
Collectible characters and playsets from popular franchises.
-
Board Games
Strategy, trivia, and family board games for all ages.
-
Video Games
Console and PC games, controllers, and gaming accessories.
-
Car Parts
OEM and aftermarket replacement parts for cars and trucks.
-
Car Accessories
Seat covers, dash cams, organizers, and interior accessories.
-
Tires & Wheels
All-season, performance, and off-road tires and alloy wheels.
-
Office Supplies
Pens, paper, binders, notebooks, and everyday desk essentials.
-
Printers & Ink
Inkjet and laser printers, cartridges, and print accessories.
Request
curl example
curl -sS \ "https://example-data.com/api/v1/categories?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/categories?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/categories.d.ts https://example-data.com/types/categories.d.ts
import type { Category, ListEnvelope } from "./types/categories";
const res = await fetch(
"https://example-data.com/api/v1/categories?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Category>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/categories",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 25,
"name": "Non-Fiction",
"slug": "non-fiction",
"description": "Biographies, history, science, self-help, and reference books.",
"parentId": 5,
"sortOrder": 2
},
{
"id": 26,
"name": "Music",
"slug": "music",
"description": "Digital albums, vinyl records, and music streaming gift cards.",
"parentId": 5,
"sortOrder": 3
},
{
"id": 27,
"name": "Skincare",
"slug": "skincare",
"description": "Moisturizers, serums, cleansers, and sunscreen for face and body.",
"parentId": 6,
"sortOrder": 1
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 40,
"totalPages": 2
},
"links": {
"self": "/api/v1/categories?page=2&limit=24",
"first": "/api/v1/categories?page=1&limit=24",
"last": "/api/v1/categories?page=2&limit=24",
"next": null,
"prev": "/api/v1/categories?page=1&limit=24"
}
}