BuyWhere · Example Payload

Buywhere Getcategoryproducts Example

E-commerceShoppingPrice ComparisonSEASoutheast AsiaAI AgentsProduct Catalog

Buywhere Getcategoryproducts Example is an example object payload from BuyWhere, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.buywhere.ai/v1/categories/electronics?currency=SGD&limit=2",
    "headers": {
      "Authorization": "Bearer bw_live_xxx"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "category": { "slug": "electronics", "name": "Electronics", "product_count": 412300, "parent_slug": null },
      "subcategories": [
        { "slug": "electronics-audio", "name": "Audio", "product_count": 41200, "parent_slug": "electronics" },
        { "slug": "electronics-laptops", "name": "Laptops", "product_count": 28400, "parent_slug": "electronics" },
        { "slug": "electronics-phones", "name": "Phones", "product_count": 31900, "parent_slug": "electronics" }
      ],
      "products": [
        {
          "id": "8a2c3a8e-1234-5678-9abc-def012345678",
          "title": "Sony WH-1000XM5",
          "price": 549.00,
          "currency": "SGD",
          "domain": "lazada"
        },
        {
          "id": "9b3d4b9f-2345-6789-abcd-ef0123456789",
          "title": "Bose QuietComfort Ultra",
          "price": 599.00,
          "currency": "SGD",
          "domain": "shopee"
        }
      ],
      "meta": { "total": 412300, "limit": 2, "offset": 0 }
    }
  }
}