Shopware · Example Payload

Shopware Search Products Example

E-CommerceOpen-SourceHeadless CommerceB2BB2CRESTAuthentication

Shopware Search Products Example is an example object payload from Shopware, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

_commentrequestresponse

Example Payload

Raw ↑
{
  "_comment": "Example: POST /store-api/search — Full-text product search with filters and aggregations",
  "request": {
    "method": "POST",
    "url": "https://your-shop.example.com/store-api/search",
    "headers": {
      "sw-access-key": "SWSCSM5ZVXJBSZCSTDPNM0BGQQ",
      "sw-context-token": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "term": "t-shirt",
      "page": 1,
      "limit": 24,
      "filter": [
        {
          "type": "range",
          "field": "price",
          "parameters": {
            "gte": 10,
            "lte": 100
          }
        },
        {
          "type": "equals",
          "field": "active",
          "value": true
        }
      ],
      "sort": [
        {
          "field": "name",
          "order": "ASC",
          "naturalSorting": false
        }
      ],
      "aggregations": [
        {
          "name": "manufacturer",
          "type": "entity",
          "field": "manufacturerId",
          "definition": "product_manufacturer",
          "aggregation": {
            "name": "manufacturerCount",
            "type": "count",
            "field": "id"
          }
        }
      ],
      "includes": {
        "product": ["id", "name", "productNumber", "calculatedPrice", "cover"]
      }
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "total": 3,
      "elements": [
        {
          "id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
          "name": "Shopware Premium T-Shirt",
          "productNumber": "SW-10023",
          "calculatedPrice": {
            "unitPrice": 29.99,
            "totalPrice": 29.99,
            "quantity": 1,
            "calculatedTaxes": [
              {
                "tax": 4.79,
                "taxRate": 19,
                "price": 29.99
              }
            ],
            "taxRules": [
              {
                "taxRate": 19,
                "percentage": 100
              }
            ],
            "listPrice": {
              "price": 39.99,
              "discount": 10.0,
              "percentage": 25.01
            }
          },
          "cover": {
            "url": "https://your-shop.example.com/thumbnail/product/a1b2c3/800x800.jpg",
            "alt": null,
            "title": null
          }
        }
      ],
      "aggregations": {
        "manufacturer": {
          "entities": [],
          "apiAlias": "product_manufacturer_aggregation"
        }
      }
    }
  }
}

Work with this as data

Every example here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for examples

4 MCP tools reach this
  • find_examplesBrowse and filter every example in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This example
curl "https://apis.io/api/v1/examples/shopware-search-products-example"
All examples
curl "https://apis.io/api/v1/examples?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.