# Search Sunbiz — 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 the Florida Sunbiz corporate registry to find detailed business registration information by company name, officer, address, or EIN, and retrieve complete entity details including filing history, registered agents, and officer names.

**Category:** Government & Public Data | **Website:** [search.sunbiz.org/](https://search.sunbiz.org/) | **Docs:** [parse.bot/marketplace/7e4adece-9b82-492e-bcfb-0408c704385a/search-sunbiz-org-api](https://parse.bot/marketplace/7e4adece-9b82-492e-bcfb-0408c704385a/search-sunbiz-org-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-search-sunbiz-org-api-7e4adece/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_entity_detail

Retrieve full details for a specific entity using the detail_url obtained from a search result. Returns entity type, filing information, addresses, registered agent, and officer/director details. Each detail page is a separate fetch; use sparingly to avoid rate limits.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `detail_url` | string | Yes | Full detail URL from a search result's detail_url field (e.g. from search_by_entity_name results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/get_entity_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"detail_url":"<string>"}'
```

### list_cable_franchises

List all cable franchises registered in Florida alphabetically by name. Returns franchise name and franchise number. The full list typically fits on one page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/list_cable_franchises \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_by_address

Search for entities by street address. Returns matching entities with name, document number, status, street address, and detail_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address to search for (e.g. '1600 Amphitheatre') |
| `limit` | integer | No | Maximum number of results to return |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/search_by_address \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>","limit":"<integer>"}'
```

### search_by_entity_name

Search for corporations, LLCs, and other entities by name. Returns a paginated list of matching entities with their document number, status, and a detail_url for retrieving full information via get_entity_detail. Results are ordered alphabetically starting from the search term.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `name` | string | Yes | Entity name to search for (e.g. 'Google') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/search_by_entity_name \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","name":"<string>"}'
```

### search_by_fei_ein

Search for entities by Federal Employer Identification Number (FEI/EIN). Returns matching entities with the FEI/EIN, document number, corporate name, and detail_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fein` | string | Yes | FEI/EIN number to search for (e.g. '770493581') |
| `limit` | integer | No | Maximum number of results to return |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/search_by_fei_ein \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fein":"<string>","limit":"<integer>"}'
```

### search_by_officer

Search for entities by officer or registered agent name. Returns matching entities with officer name, entity name, document number, and detail_url for retrieving full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `name` | string | Yes | Officer or registered agent name to search for (e.g. 'Smith') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/search_by_officer \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","name":"<string>"}'
```

### search_by_zip

Search for entities registered in a specific ZIP code. Returns matching entities with name, document number, status, zip code, and detail_url.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return |
| `zip_code` | string | Yes | ZIP code to search for (e.g. '33101') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-search-sunbiz-org-api-7e4adece/search_by_zip \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","zip_code":"<string>"}'
```
