Small Business Innovation Research STTR Scraper
Pricing
from $10.00 / 1,000 result items
Go to Apify Store

Small Business Innovation Research STTR Scraper
Pricing
from $10.00 / 1,000 result items
Rating
0.0
(0)
Developer
Fortuitous Pirate
Maintained by Community
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 hours ago
Last modified
Categories
Share
SBIR/STTR Awards Scraper
Overview
Scrapes Small Business Innovation Research (SBIR) and Small Business Technology Transfer (STTR) federal awards data. Uses the SBIR. gov API with automatic CSV fallback when API is unavailable.
Features
- Search by keywords to find specific results
- Filter results by category or type
Use Cases
- Track - Track federal government data releases and updates
- Build - Build datasets for policy research and analysis
- Monitor - Monitor regulatory changes and compliance requirements
- Aggregate - Aggregate public government data for transparency projects
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
searchType | string | Type of search to perform | agency |
agency | string | Federal agency code (e.g., DOD, HHS, NASA, NSF, DOE, USDA, EPA, DOC, ED, DOT,... | `` |
firm | string | Search by company/firm name (partial match supported) | |
year | integer | Filter by award year (e.g., 2023) | |
researchInstitution | string | Search by research institution name | |
keyword | string | Search awards by keyword in title/abstract | |
program | string | Filter by program type | `` |
phase | string | Filter by award phase | `` |
state | string | Filter by US state (2-letter code, e.g., CA, NY, TX) | |
minAwardAmount | integer | Minimum award amount in USD | |
maxAwardAmount | integer | Maximum award amount in USD | |
startDate | string | Filter awards from this date (MM/DD/YYYY format) | |
endDate | string | Filter awards until this date (MM/DD/YYYY format) | |
limit | integer | Maximum number of awards to return (0 for all) | 100 |
useCSVFallback | boolean | Fall back to CSV download if API is unavailable (recommended - the API is oft... | true |
Output Example
Each result contains structured data like this:
{"firm": "Smith & Associates","award_title": "Sample award_title","agency": "Department of Commerce","phase": "Sample phase","program": "Sample program","award_amount": 50000,"award_year": "Sample award_year","state": "CA","city": "San Francisco","pi_name": "SBIR/STTR Awards Sample Item","abstract": "Detailed description of the item..."}
Pricing
This actor uses pay-per-result pricing:
- $0.0015 per result
- $1.50 per 1,000 results
No monthly fees. You only pay for what you scrape. Apify Free plan includes $5/month in platform credits.
How to Run
Apify Console
- Go to the SBIR/STTR Awards Scraper actor page
- Configure your input parameters
- Click Start and wait for the results
- Download data in JSON, CSV, or Excel format
API
curl -X POST "https://api.apify.com/v2/acts/fortuitous_pirate~sbir-sttr-scraper/runs?token=YOUR_API_TOKEN" \-H "Content-Type: application/json" \-d '{"maxItems": 10}'
Python SDK
from apify_client import ApifyClientclient = ApifyClient("YOUR_API_TOKEN")run = client.actor("fortuitous_pirate/sbir-sttr-scraper").call(run_input={"maxItems": 10})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(item)
Integration
Connect SBIR/STTR Awards Scraper with your existing tools and workflows:
- API access - Programmatic access via Apify API
- Webhooks - Get notified when scraping completes
- Scheduling - Set up recurring runs on any schedule
- Zapier / Make - Connect with 5,000+ apps via Apify integrations
- Python / Node.js SDKs - Native client libraries for easy integration