example-data.com

products

products

Page 3 of 9.

Frozen Concrete Salad

Frozen Concrete Salad

Jacobson Inc

USD116.25

In stock

★ 1.2 (3382)

Savor the bitter essence in our Salad, designed for right culinary adventures

Category
kitchen
Licensed Bronze Soap

Licensed Bronze Soap

Stoltenberg Group

USD283.59

In stock

★ 4.9 (2822)

Our elephant-friendly Shoes ensures naughty comfort for your pets

Category
sports
Frozen Gold Chips

Frozen Gold Chips

Heller and Sons

USD113.85

In stock

★ 3.8 (3836)

Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship

Category
sports
Practical Rubber Car

Practical Rubber Car

Von Inc

USD180.89

Out of stock

★ 1.0 (3037)

Discover the koala-like agility of our Gloves, perfect for baggy users

Category
kitchen
Luxurious Cotton Tuna

Luxurious Cotton Tuna

Zieme - Gleason

USD332.05 USD180.84

In stock

★ 2.2 (4738)

Our lion-friendly Cheese ensures tangible comfort for your pets

Category
kitchen
Recycled Wooden Towels

Recycled Wooden Towels

Boehm LLC

USD442.05 USD290.75

Out of stock

★ 4.7 (4941)

Discover the snake-like agility of our Salad, perfect for royal users

Category
toys

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/products?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = await res.json();
import type { Product, ListEnvelope } from "https://example-data.com/types/products.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/products?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Product>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/products",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 49,
      "sku": "V0RT0AS3K1",
      "name": "Frozen Concrete Salad",
      "slug": "frozen-concrete-salad-49",
      "description": "Savor the bitter essence in our Salad, designed for right culinary adventures",
      "category": "kitchen",
      "brand": "Jacobson Inc",
      "price": 116.25,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 145,
      "rating": 1.2,
      "ratingCount": 3382,
      "imageUrl": "https://picsum.photos/seed/product-49/800/800",
      "createdAt": "2025-02-24T00:18:05.625Z",
      "updatedAt": "2025-03-28T16:17:05.440Z"
    },
    {
      "id": 50,
      "sku": "XEZBHKG0WX",
      "name": "Licensed Bronze Soap",
      "slug": "licensed-bronze-soap-50",
      "description": "Our elephant-friendly Shoes ensures naughty comfort for your pets",
      "category": "sports",
      "brand": "Stoltenberg Group",
      "price": 283.59,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 336,
      "rating": 4.9,
      "ratingCount": 2822,
      "imageUrl": "https://picsum.photos/seed/product-50/800/800",
      "createdAt": "2025-04-04T04:23:33.683Z",
      "updatedAt": "2026-05-15T09:05:02.116Z"
    },
    {
      "id": 51,
      "sku": "28UEMYWOF7",
      "name": "Frozen Gold Chips",
      "slug": "frozen-gold-chips-51",
      "description": "Introducing the Grenada-inspired Chicken, blending ripe style with local craftsmanship",
      "category": "sports",
      "brand": "Heller and Sons",
      "price": 113.85,
      "salePrice": null,
      "currency": "USD",
      "inStock": true,
      "stockCount": 150,
      "rating": 3.8,
      "ratingCount": 3836,
      "imageUrl": "https://picsum.photos/seed/product-51/800/800",
      "createdAt": "2025-10-12T16:53:54.924Z",
      "updatedAt": "2026-01-17T17:36:20.381Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 200,
    "totalPages": 9
  },
  "links": {
    "self": "/api/v1/products?page=3",
    "next": "/api/v1/products?page=4",
    "prev": "/api/v1/products?page=2"
  }
}
Draftbit