Skip to main content
GET
https://api.usegately.com
/
api
/
v1
/
shop
/
products
curl -X GET "https://api.usegately.com/api/v1/shop/products?category=courses" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "products": [
    {
      "id": "prod_123",
      "name": "Premium Course",
      "description": "Learn advanced techniques",
      "price": 99.00,
      "currency": "usd",
      "category": "courses",
      "is_active": true,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}
Retrieve a list of active products for your ecommerce store.

Query Parameters

category
string
Filter by product category
limit
number
default:"50"
Maximum number of products to return

Response

success
boolean
Whether the request was successful
products
array
Array of product objects
curl -X GET "https://api.usegately.com/api/v1/shop/products?category=courses" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "products": [
    {
      "id": "prod_123",
      "name": "Premium Course",
      "description": "Learn advanced techniques",
      "price": 99.00,
      "currency": "usd",
      "category": "courses",
      "is_active": true,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}