# Totalapex — 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 retrieve PDF documents from Total Apex Beverage Equipment's library by model number, manufacturer, or equipment type to find the specs and information you need. Access detailed equipment documentation with flexible filtering and pagination to quickly locate the right resources for your beverage equipment needs.

**Category:** Business Directories | **Website:** [www.totalapex.com/documentlist/list/search](https://www.totalapex.com/documentlist/list/search) | **Docs:** [parse.bot/marketplace/5e0a6ea7-bf47-479f-a5b4-3d42f8cce991/totalapex-com-api](https://parse.bot/marketplace/5e0a6ea7-bf47-479f-a5b4-3d42f8cce991/totalapex-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-totalapex-com-api-5e0a6ea7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_documents

List documents from the Total Apex Document Library with pagination. Returns document PDF URLs, model numbers, manufacturer names, and equipment types. Supports filtering by keyword, manufacturer, equipment type, and document type. Set fetch_all to true to automatically paginate through all pages and return every matching document in a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `document_type` | string | No | Filter by document type. Accepts exactly one of: Other, Specifications, Manuals, Parts List, Manuales, MSDS and Testing Results, MSDS, Service Bulletins, Documentos Adicionales. |
| `equipment_type` | string | No | Filter by equipment type. Accepts exactly one of: Ice Products, Beverage Equipment, Videos, Refrigeration Equipment, Food Display & Merchandising Equipment, Food Preparation Equipment. |
| `fetch_all` | boolean | No | When true, automatically paginates through all pages and returns every matching document in a single response. When false, returns a single page of results. |
| `keyword` | string | No | Search keyword to filter documents by name or content. |
| `limit` | integer | No | Number of results per page. Ignored when fetch_all is true (uses 100 internally for efficiency). |
| `manufacturer` | string | No | Filter by manufacturer. Accepts exactly one of: Ice-O-Matic, Lancer, Crysalli, FBD, Cornelius, Solventum \| 3M, Aquamor, BUNN, DISPENSE-RITE, Flojet, Multiplex, Glastender, Accuflex, LogiCO2, Procon, Taprite, Pentair Shurflo, Watts, Wunder-Bar, Cambro, Grindmaster/Crathco, Thonhauser USA Inc., Elmeco, Gardner Denver Thomas, ICI, Kinetico, McDantim, Nordic, John Guest, UBC Group, Westover Scientific, Wilbur Curtis, Draftec, Ecolab, Kay Chemical, Nu-Calgon, Sunburst, Nexel Racks, CM Becker, Manitowoc, Ugolini, Armaflex, Aether, Everpure, Embraco, Fluid-O-Tech, Haynes Mfg, Imbera, Marathon Electric, Oetiker, Progeral, Rapak, Regal Beloit, Starline, Sterling Pressure Systems, Tecumseh, Tomlinson, Tru-Gap, Wago, Ashcroft/Dresser, Bevex, Newton CFV, Loctite, Pentair Everpure, Schaerer, Crathco, SENCO, California Air Tools, True Manufacturing. |
| `page` | integer | No | Page number for pagination (1-indexed). Ignored when fetch_all is true. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-totalapex-com-api-5e0a6ea7/list_documents \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"document_type":"<string>","equipment_type":"<string>","fetch_all":"<boolean>","keyword":"<string>","limit":"<integer>","manufacturer":"<string>","page":"<integer>"}'
```
