categories
categories
Browse 40 categories records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Electronics
- Clothing & Apparel
- Home & Garden
- Sports & Outdoors
- Books & Media
- Health & Beauty
- Food & Grocery
- Toys & Games
- Automotive
- Office & Business
- Smartphones
- Laptops
- Cameras
- Audio
- Men's Clothing
- Women's Clothing
- Footwear
- Furniture
- Kitchen & Dining
- Garden & Outdoor
- Fitness Equipment
- Camping & Hiking
- Team Sports
- Fiction
-
Electronics
Consumer electronics, gadgets, and technology hardware.
-
Clothing & Apparel
Men's, women's, and children's clothing, shoes, and accessories.
-
Home & Garden
Furniture, décor, tools, and garden supplies for the home.
-
Sports & Outdoors
Equipment, apparel, and gear for sports and outdoor activities.
-
Books & Media
Books, e-books, music, movies, and digital media content.
-
Health & Beauty
Personal care, cosmetics, wellness, and pharmacy products.
-
Food & Grocery
Fresh produce, packaged goods, beverages, and specialty foods.
-
Toys & Games
Toys, board games, puzzles, and educational play products for all ages.
-
Automotive
Car parts, accessories, tools, and vehicle care products.
-
Office & Business
Office supplies, furniture, and equipment for professional workspaces.
-
Smartphones
Mobile phones and accessories from leading brands.
-
Laptops
Portable computers for work, gaming, and everyday use.
-
Cameras
Digital cameras, lenses, and photography accessories.
-
Audio
Headphones, speakers, earbuds, and home audio systems.
-
Men's Clothing
Shirts, trousers, suits, and casual wear for men.
-
Women's Clothing
Dresses, tops, jeans, and formalwear for women.
-
Footwear
Shoes, boots, sandals, and athletic sneakers.
-
Furniture
Sofas, beds, tables, chairs, and shelving for every room.
-
Kitchen & Dining
Cookware, appliances, tableware, and kitchen gadgets.
-
Garden & Outdoor
Plants, tools, furniture, and supplies for outdoor spaces.
-
Fitness Equipment
Weights, cardio machines, and gym equipment for home and gym use.
-
Camping & Hiking
Tents, sleeping bags, backpacks, and trail gear.
-
Team Sports
Equipment and apparel for soccer, basketball, baseball, and more.
-
Fiction
Novels, short stories, and literary fiction across all genres.
Electronics
Consumer electronics, gadgets, and technology hardware.
Clothing & Apparel
Men's, women's, and children's clothing, shoes, and accessories.
Home & Garden
Furniture, décor, tools, and garden supplies for the home.
Sports & Outdoors
Equipment, apparel, and gear for sports and outdoor activities.
Books & Media
Books, e-books, music, movies, and digital media content.
Health & Beauty
Personal care, cosmetics, wellness, and pharmacy products.
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/categories?limit=25"const res = await fetch(
"https://example-data.com/api/v1/categories?limit=25"
);
const { data, meta } = await res.json();import type { Categorie, ListEnvelope } from "https://example-data.com/types/categories.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/categories?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Categorie>;import requests
res = requests.get(
"https://example-data.com/api/v1/categories",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"name": "Electronics",
"slug": "electronics",
"description": "Consumer electronics, gadgets, and technology hardware.",
"parentId": null,
"sortOrder": 1
},
{
"id": 2,
"name": "Clothing & Apparel",
"slug": "clothing-apparel",
"description": "Men's, women's, and children's clothing, shoes, and accessories.",
"parentId": null,
"sortOrder": 2
},
{
"id": 3,
"name": "Home & Garden",
"slug": "home-garden",
"description": "Furniture, décor, tools, and garden supplies for the home.",
"parentId": null,
"sortOrder": 3
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 40,
"totalPages": 2
},
"links": {
"self": "/api/v1/categories?page=1",
"first": "/api/v1/categories?page=1",
"last": "/api/v1/categories?page=2",
"next": "/api/v1/categories?page=2",
"prev": null
}
}