No-key demo endpoints for US public-data evidence. Paid self-serve access is live through PayAPI Market.
Search entity registrations across 17 US states
Company filings: 10-K, 10-Q, 8-K, and more
Nonprofit tax returns, revenue, and executive pay
Domain registration and contact data
Historical prices and OHLCV from Yahoo Finance
Search business entity registrations across 17 no-key US states (NY, TX, CO, OR, IA, WI, NJ, CT, PA, MN, KY, SC, ND, AL, AR, RI, MO). CA requires a keyed source and is not enabled on the open pilot.
| Param | Description |
|---|---|
| query | Required. Business name to search |
| states | Comma-separated state codes (default: NY) |
| maxResults | Max results per state (default: 25) |
| fetchDetails | Set to true for full entity details |
Search municipal building permit records for construction lead workflows. Returns permit number, address, status, project description, contractor/owner when public, estimated value, and source city.
| Param | Description |
|---|---|
| city | Required. City key such as chicago, la, sf, seattle, austin, denver, boston, portland, dallas, houston, or phoenix |
| keyword | Optional full-text search across public permit fields |
| permitType | Optional permit type filter |
| dateFrom | YYYY-MM-DD lower bound when the source has an issue/application date |
| dateTo | YYYY-MM-DD upper bound when the source has an issue/application date |
| maxResults | Max results (default: 25, capped at 100) |
Search SEC EDGAR company filings (10-K, 10-Q, 8-K, etc.) by company name, ticker, or CIK.
| Param | Description |
|---|---|
| query | Company name search |
| tickers | Comma-separated stock tickers |
| ciks | Comma-separated CIK numbers |
| formTypes | Filter by form type (e.g. 10-K,10-Q) |
| dateFrom | YYYY-MM-DD start date |
| dateTo | YYYY-MM-DD end date |
| maxFilings | Max results (default: 100) |
Search IRS 990 nonprofit tax filings. Returns revenue, expenses, executive compensation, and organizational data.
| Param | Description |
|---|---|
| query | Required. Organization name |
| ein | Alternative. EIN number lookup |
| state | Two-letter state code filter |
| fetchDetails | Set to true for full filing details |
| maxResults | Max results (default: 25) |
WHOIS domain registration lookup. Returns registrar, dates, nameservers, and contact info.
| Param | Description |
|---|---|
| domain | Required. Domain name to look up |
Stock price history from Yahoo Finance. OHLCV data with configurable range and interval.
| Param | Description |
|---|---|
| symbol | Required. Stock ticker symbol |
| range | Time range: 1d, 5d, 1mo, 3mo, 6mo, 1y, 5y, max (default: 1mo) |
| interval | Data interval: 1m, 5m, 15m, 1h, 1d, 1wk, 1mo (default: 1d) |
# Search business entities in New York and Texas
curl "https://autoscrape-api-seven.vercel.app/v1/business-entity/search?query=Tesla&states=NY,TX"
# Find building permit leads in Chicago
curl "https://autoscrape-api-seven.vercel.app/v1/building-permits/search?city=chicago&keyword=roof&maxResults=10"
# Look up SEC filings for Apple
curl "https://autoscrape-api-seven.vercel.app/v1/sec-edgar/filings?query=Apple&formTypes=10-K"
# Search nonprofits
curl "https://autoscrape-api-seven.vercel.app/v1/irs-990/search?query=Red+Cross&state=NY"
# WHOIS lookup
curl "https://autoscrape-api-seven.vercel.app/v1/whois/lookup?domain=google.com"
# Stock price history
curl "https://autoscrape-api-seven.vercel.app/v1/stock/chart?symbol=AAPL&range=3mo"