GET
/
v1
/
products
Get Products
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
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer

Maximum number of products to return

starting_after
string

Product ID to start listing after

Response

200 - application/json

List of products with pagination

The response is of type object.