cURL
curl --request GET \ --url https://sandbox.api.withgale.com/v1/v1/products \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "products": [ { "product_id": 123, "merchant_site_product_id": "<string>", "merchant_site_single_sku_id": "<string>", "name": "<string>", "description": "<string>", "product_picture": "<string>", "product_amount": 123, "currency_code": "<string>", "hsa_fsa_eligible": 123, "eligibility_type": "<string>", "status": "<string>" } ], "pagination": { "total": 123, "per_page": 123, "current_page": 123, "last_page": 123, "from": 123, "to": 123 } } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Maximum number of products to return
Product ID to start listing after
List of products with pagination
The response is of type object.
object