Add a new product to your catalog with automatic HSA/FSA eligibility detection
Documentation Index
Fetch the complete documentation index at: https://docs.withgale.com/llms.txt
Use this file to discover all available pages before exploring further.
All monetary amounts are integers in cents (e.g., 4995 = $49.95).
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Product name (max 255 chars) |
tagline | string | No | Short description (max 255 chars) |
description | string | No | Full product description (supports markdown) |
price | integer | Yes | Price in cents (e.g., 4995 = $49.95) |
currency | string | Yes | ISO 4217 currency code (e.g., “USD”) |
merchant_product_id | string | No | Your reference ID for this product |
upc_code_or_gtin | string | No | UPC or GTIN barcode (used for eligibility check) |
images | array | No | Array of image URLs (max 10) |
metadata | object | No | Custom key-value pairs |
| Status Code | Error Code | Description |
|---|---|---|
| 400 | invalid_request | Missing or invalid parameters |
| 400 | invalid_price | Price must be positive integer |
| 400 | invalid_currency | Unsupported currency code |
| 401 | unauthorized | Invalid or missing API key |
| 422 | validation_error | Field validation failed |
| 429 | rate_limit_exceeded | Too many requests |