New business radar
Fresh filings delivered daily — filter by city, type, or date.
1 API call · $0.005How 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
What you learn
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.
# 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 }// 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