# Bizapedia — 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 detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.

**Category:** Business Directories | **Website:** [bizapedia.com/](https://bizapedia.com/) | **Docs:** [parse.bot/marketplace/386e6869-c651-461a-abf5-9e082b9483a5/bizapedia-com-api](https://parse.bot/marketplace/386e6869-c651-461a-abf5-9e082b9483a5/bizapedia-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-bizapedia-com-api-386e6869/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Fetch detailed business information for a specific company by state and URL slug. Returns filing details, principal address, registered agent, and contacts extracted from the company's public profile page. The slug is the URL path component for the company on Bizapedia (e.g. 'genuine-parts-company'). A 410/404 means the company page no longer exists.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The company's URL slug as it appears in the Bizapedia URL path (e.g. 'genuine-parts-company', 'five-oaks-farm-of-georgia-llc'). |
| `state` | string | Yes | Two-letter US state code, lowercase (e.g. 'ga', 'tn'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bizapedia-com-api-386e6869/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>","state":"<string>"}'
```

### get_predefined_companies

Retrieve business details for a predefined set of companies across Georgia and Tennessee. Returns an array of company profiles (or error objects for companies whose pages have been removed). Useful for bulk retrieval without needing to know individual slugs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bizapedia-com-api-386e6869/get_predefined_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_companies

Search for companies by name. Note: Search is highly protected and may be blocked. direct details fetching is preferred if the slug is known.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | The company name to search for |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-bizapedia-com-api-386e6869/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
