New business radar

Fresh filings delivered daily — filter by city, type, or date.

1 API call · $0.005
← All examples
💼 B2B sales teams
📣 Marketing agencies
🏢 Commercial real estate
🛡️ Insurance agents

How can I find newly filed Florida businesses in my area? You sell services to new businesses — bookkeeping, insurance, office space, marketing, legal. Roughly 3,000 new entities file in Florida every business day. One API call gives you today's filings filtered to your target market.

In this example, you want new LLCs filed today in Miami: a unified search filtered by city, filing type, and status returns "Example Digital LLC," "Example Wellness Group LLC," and "Example Studios LLC" — all filed today.

The lookup

Search today's filings with filters
GET /api/v1/corporations/search/unified?city=Miami&filingType=FLAL&status=Active&fileDate=today
EXAMPLE DIGITAL LLCFiled today
EXAMPLE WELLNESS GROUP LLCFiled today
EXAMPLE STUDIOS LLCFiled today
Total
47 new Miami LLCs today

What you learn

3,000+ daily filings. Florida averages over 3,000 new entity filings per business day — a massive, renewable lead source.
Filterable by city, type, and status. Narrow to your exact market — Miami LLCs, Orlando corporations, statewide non-profits.
ℹ️
Full detail available. Each result includes a document number — one follow-up call gets you the registered agent, address, and officers.
Automate with a daily cron job. Run once per morning, push results to your CRM. Fresh leads every day for $0.005/day.
The decision is simple

Run this query daily, push to CRM. Fresh leads every morning. Filter by your niche.

  • One request per day = $0.005/day = $1.50/year
  • Automate with a cron job or scheduled Lambda
  • Filter by city to match your service area
  • Follow up with a detail call for officer names and addresses

Competitors charge hundreds per month for stale lead lists. You get fresh filings the day they happen for $0.005.

How it's built

One API call with filters. Run daily to build a pipeline of new business leads in your target market.

Try it — copy, paste, run
terminal
# Search today's filings filtered by city and type
# Replace "Miami" with your target city and "FLAL" with your target filing type
$ curl -s -H "x-api-key: $API_KEY" \
    "https://api.sunbizdata.com/api/v1/corporations/search/unified?city=Miami&filingType=FLAL&status=Active&fileDate=today"

< 200 OK (52ms)
{ "results": [
    { "documentNumber": "L00000000005", "corporationName": "EXAMPLE DIGITAL LLC", "status": "Active", "fileDate": "today" },
    { "documentNumber": "L00000000006", "corporationName": "EXAMPLE WELLNESS GROUP LLC", "status": "Active", "fileDate": "today" },
    { "documentNumber": "L00000000007", "corporationName": "EXAMPLE STUDIOS LLC", "status": "Active", "fileDate": "today" }
  ], "total": 47 }
Drop into your app
node.js
// Fetch today's new filings filtered by city and type
async function getNewFilings(city, filingType = "FLAL") {
  const headers = { "x-api-key": process.env.SUNBIZDATA_KEY };
  const params = new URLSearchParams({
    city,
    filingType,
    status: "Active",
    fileDate: "today",
  });

  const response = await fetch(
    `https://api.sunbizdata.com/api/v1/corporations/search/unified?${params}`,
    { headers }
  ).then(r => r.json());

  return {
    leads: response.results,
    total: response.total,
    city,
    filingType,
    date: new Date().toISOString().split("T")[0],
  };
}

// Run daily — push results to your CRM
const todaysLeads = await getNewFilings("Miami");
console.log(`${todaysLeads.total} new leads in ${todaysLeads.city}`);

Start with $5, get 1,000 requests

Pay per request. No subscription. Requests never expire.

Get started