# Fisher Scientific — 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 and discover laboratory products from Fisher Scientific's catalog with real-time results and typeahead suggestions. Find exactly what you need with paginated product listings to browse their full inventory of lab supplies and equipment.

**Category:** E-commerce | **Website:** [www.fishersci.com/us/en/home.html](https://www.fishersci.com/us/en/home.html) | **Docs:** [parse.bot/marketplace/70cadcab-ca60-4442-8ff7-f413d0ba053b/fishersci-com-api](https://parse.bot/marketplace/70cadcab-ca60-4442-8ff7-f413d0ba053b/fishersci-com-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-fishersci-com-api-70cadcab/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Full-text search across Fisher Scientific's product catalog. Returns paginated product listings with title, catalog number, description, category, image, and pricing data. Results are paginated at 15 per page. Sort by relevance (default), ascending price, or descending price.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search keyword (e.g., 'pipette', 'centrifuge', 'gloves') |
| `page` | integer | No | Page number (1-based) |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fishersci-com-api-70cadcab/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","page":"<integer>","sort_by":"<string>"}'
```

### suggest_products

Typeahead suggestions for the search bar. Given a partial or complete term, returns matching product names, popular category terms, brand suggestions, catalog number matches, and spelling corrections. Useful for building autocomplete or discovering related search terms before a full search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `term` | string | Yes | Search term for typeahead suggestions (e.g., 'pipette', 'beaker') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fishersci-com-api-70cadcab/suggest_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"term":"<string>"}'
```
