# Kosher SA — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for certified kosher products available in South Africa and access their detailed kosher certification information. Browse through the Kosher SA database to find products that meet your dietary and religious requirements.

**Category:** Food & Dining | **Website:** [www.koshersa.co.za/search/](https://www.koshersa.co.za/search/) | **Docs:** [parse.bot/marketplace/5bb2c1b0-eda0-402c-b055-e63d1ce3bae3/koshersa-co-za-api](https://parse.bot/marketplace/5bb2c1b0-eda0-402c-b055-e63d1ce3bae3/koshersa-co-za-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-koshersa-co-za-api-5bb2c1b0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search the Kosher SA product database by product name. Returns paginated results with full certification details including manufacturer, category, kosher type classification, kosher status, international product flag, and notes. An empty query returns all products in the database. Results are auto-iterated across pages; the page size is configurable (50, 100, 150, or 200 products per page).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `per_page` | integer | No | Number of products per page. Accepted values: 50, 100, 150, 200. |
| `query` | string | No | Product name search term. Matches against product names. Empty string returns all products. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-koshersa-co-za-api-5bb2c1b0/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","per_page":"<integer>","query":"<string>"}'
```
