List Products

Retrieve a paginated list of all products in your catalog.

Endpoint

GET /api/products

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number (default: 1)
limitintegerNoNumber of items per page (default: 20)
categorystringNoFilter by category

Response

Returns a list of product objects.
{
  "data": [
    {
      "id": "prod_123456789",
      "name": "Premium Service",
      "price": 99.99,
      "currency": "USD",
      "description": "Premium service package",
      "category": "Services",
      "created_at": "2023-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 1
  }
}