# AutoScrape Sunbiz New Business Filings API

> AutoScrape Sunbiz New Business Filings API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves newly filed Florida business registrations from the Sunbiz (Florida Division of Corporations) daily source files, filtered by date range, filing type, and formation status.

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/sunbiz-new-business-filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-sunbiz-new-business-filings-api-f4db44c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CO6USSwhlhBTo4nKDGDri

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability autoscrape-sunbiz-new-business-filings-api-f4db44c6
```

Example prompt: Pull me the new Florida business filings from Sunbiz for July 31, 2026 — just active records that were formed on that date, limit to 25 results, and filter to Florida LLCs (FLAL) only.

## When to prefer this

Choose this endpoint when you need structured, daily-granularity data on newly registered Florida businesses directly from the Sunbiz state source, especially when filtering by filing type (LLC, foreign corp, domestic profit) or monitoring formation activity. Prefer this over general web scraping or EDGAR-based searches when the target is Florida state-level corporate registrations rather than SEC-regulated filings.

## Known failure modes

- Date range exceeding seven calendar days returns an error or truncated results
- No filings found for the specified date (e.g. weekend or holiday with no source file) returns empty results
- Invalid filing type codes return no matching records
- maxResults capped at 25 per request regardless of actual match count
- Payment failure via x402 protocol results in 402 response before data is returned

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of matching records and an array of results, each containing the business name, filing status (e.g. Active), filing type code (e.g. FLAL), document number, and source file date. Also includes a setupStatus field confirming the data source was found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "name": "Example Florida LLC",
    "status": "Active",
    "filingType": "FLAL",
    "documentNumber": "example",
    "sourceFileDate": "2026-07-31"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-sunbiz-new-business-filings-api-f4db44c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
