# Manta — 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 U.S. businesses by industry and location, then retrieve detailed contact information including address, phone, website, and more. Ideal for business research, lead generation, and directory lookups across any state and industry.

**Category:** Business Directories | **Website:** [manta.com/](https://manta.com/) | **Docs:** [parse.bot/marketplace/4c1c2286-e680-4113-92a5-eb52f0fecff8/manta-com-api](https://parse.bot/marketplace/4c1c2286-e680-4113-92a5-eb52f0fecff8/manta-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-manta-com-api-4c1c2286/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_details

Retrieve detailed business information for a specific Manta business URL. Extracts structured data from JSON-LD on the business page including name, address, phone, website, industry, and employee contact name. The business_url is obtainable from search_businesses results[*].url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `business_url` | string | Yes | Full Manta business profile URL (e.g. 'https://www.manta.com/c/mx4ng9q/columbus-children-s-dentistry-matthew-keller-dmd'). Obtainable from search_businesses results[*].url. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manta-com-api-4c1c2286/get_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"business_url":"<string>"}'
```

### search_businesses

Search for businesses by industry and optionally city within Georgia. Returns a single page of matching businesses (typically 30-50 results) with contact information and profile URLs. No server-side pagination; all available results for the query are returned in one response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City in Georgia to filter results by. Omitting returns businesses across all of Georgia. |
| `industry` | string | No | Industry type to filter by. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manta-com-api-4c1c2286/search_businesses \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","industry":"<string>"}'
```
