# Product listing Fetch a paginated list of products with optional filters like date, search query, limit, without_pagination and without_one_off. Endpoint: GET /products Version: 1.0.0 Security: BearerAuth ## Query parameters: - `date` (string) Filter products created on a specific date. Example: "2024-12-06" - `query` (string) Search for products by name or description. Example: "Christie" - `limit` (integer) Limit the number of results per page. Example: 100 - `without_pagination` (boolean) Get all products without pagination. Example: true - `without_one_off` (boolean) Get all recurring products. Example: true ## Header parameters: - `Accept` (string, required) The response format must be JSON. Example: "application/json" ## Response 200 fields