The Complete Guide to Free Data Sources for AI Intelligence Platforms
A comprehensive registry of free APIs, datasets, and data pipelines for building startup intelligence, funding data, and AI research platforms. Published: March 4, 2026 Author: OpenGarage Research Last Updated: March 4, 2026Executive Summary
Building a data intelligence platform doesn't require million-dollar data licensing deals. This guide catalogs 47 free data sources across 8 categories that can power startup intelligence, funding tracking, AI research monitoring, and B2B discovery platforms.
Key Insight: The most valuable data providers (PitchBook, CB Insights, Tracxn) charge $10K-50K/year because they've aggregated freely available data into queryable intelligence. You can build the same thing.🎯 Quick Reference: Priority Sources
| Category | Top Free Source | Why It's Valuable |
|---|---|---|
| Funding Data | SEC EDGAR | Every US fundraise >$1M files Form D |
| AI Research | arXiv API | 2.4M papers, real-time AI research |
| Startup Launches | Product Hunt API | Daily product launches with traction data |
| Company Data | OpenCorporates | 200M+ companies globally |
| Tech Trends | HackerNews API | Real-time developer sentiment |
| Academic | Semantic Scholar | 214M papers, 2.49B citations |
| News | GDELT | Global news events, free BigQuery |
| Jobs/Hiring | RemoteOK API | Tech hiring signals |
1. 📊 Funding & Investment Data
SEC EDGAR (US Filings)
The goldmine for US funding intelligence.| Field | Details |
|---|---|
| URL | https://www.sec.gov/cgi-bin/browse-edgar |
| API Docs | https://www.sec.gov/developer |
| Signup | Not required (public data) |
| Rate Limit | 10 requests/second |
| Key Data | Form D (fundraises), 10-K/10-Q (public companies), S-1 (IPOs) |
- Every US company raising >$1M must file within 15 days
- Contains: Company name, amount raised, investor names, use of funds
- ~50,000 Form D filings per year
# Search Form D filings
curl "https://efts.sec.gov/LATEST/search-index?q=form-d&dateRange=custom&startdt=2026-01-01&enddt=2026-03-04"
Full-text search
curl "https://efts.sec.gov/LATEST/search-index?q=artificial%20intelligence&forms=D"
Bulk Download:
https://www.sec.gov/cgi-bin/browse-edgar?action=getcurrent&type=D&company=&dateb=&owner=include&count=100&output=atom
OpenCorporates
200M+ companies from 140+ jurisdictions.| Field | Details |
|---|---|
| URL | https://opencorporates.com |
| API Docs | https://api.opencorporates.com |
| Signup | https://opencorporates.com/api_accounts/new |
| Free Tier | 500 requests/month (unauthenticated) |
| Paid | From $50/month for 10K requests |
- Company name, registration number, status
- Incorporation date, jurisdiction
- Officers and directors
- Registered address
- Filings history
curl "https://api.opencorporates.com/v0.4/companies/search?q=artificial+intelligence&jurisdiction_code=in"
India MCA (Ministry of Corporate Affairs)
Indian company registrations - requires scraping.| Field | Details |
|---|---|
| URL | https://www.mca.gov.in |
| Signup | https://www.mca.gov.in/mcafoportal/login.do |
| Cost | Free (public data, no API) |
| Data | Company master data, directors, charges, annual returns |
- MCA21 portal requires login
- Data available via RTI (Right to Information) requests
- Third-party aggregators: Tofler, Zauba Corp
- https://www.tofler.in
- Free tier: 5 company views/day
- Has unofficial API
AngelList/Wellfound
Startup hiring = funding signal.| Field | Details |
|---|---|
| URL | https://wellfound.com |
| API | No public API (scraping required) |
| Signal | Rapid hiring → recent funding |
/jobs- Job listings with company data/company/{slug}- Company profiles- Employee count changes over time
2. 🧠 AI & Research Intelligence
arXiv API
2.4M+ research papers, heavily AI-focused.| Field | Details |
|---|---|
| URL | https://arxiv.org |
| API Docs | https://info.arxiv.org/help/api/index.html |
| Signup | Not required |
| Rate Limit | 1 request/3 seconds |
| Bulk Data | https://info.arxiv.org/help/bulk_data.html |
cs.AI- Artificial Intelligencecs.LG- Machine Learningcs.CL- Computation and Language (NLP)cs.CV- Computer Visionstat.ML- Statistics/ML
# Recent AI papers
curl "http://export.arxiv.org/api/query?search_query=cat:cs.AI&start=0&max_results=100&sortBy=submittedDate&sortOrder=descending"
OAI-PMH for Bulk:
curl "http://export.arxiv.org/oai2?verb=ListRecords&set=cs&metadataPrefix=arXiv"
Semantic Scholar API
214M papers, 2.49B citations, SPECTER embeddings.| Field | Details |
|---|---|
| URL | https://www.semanticscholar.org |
| API Docs | https://api.semanticscholar.org/api-docs/ |
| Signup | https://www.semanticscholar.org/product/api#api-key-form |
| Free Tier | 1 RPS with API key, 1000 RPS shared without |
| Bulk Data | Available via datasets endpoint |
- SPECTER2 embeddings (find similar papers)
- Citation contexts
- Author disambiguation
- Venue normalization
# Search papers
curl "https://api.semanticscholar.org/graph/v1/paper/search?query=large+language+models&limit=10&fields=title,authors,year,citationCount"
Hugging Face Hub API
ML models, datasets, and papers.| Field | Details |
|---|---|
| URL | https://huggingface.co |
| API Docs | https://huggingface.co/docs/hub/api |
| OpenAPI Spec | https://huggingface.co/.well-known/openapi.json |
| Signup | https://huggingface.co/join |
| Rate Limit | Generous, account-based |
- Model cards and metadata
- Dataset cards
- Paper references
- Download counts
- Trending models
Papers With Code
Research papers with implementations.| Field | Details |
|---|---|
| URL | https://paperswithcode.com |
| Data | Now merged with Hugging Face |
| Access | https://github.com/paperswithcode/paperswithcode-data |
- Papers: https://paperswithcode.com/media/about/papers-with-abstracts.json.gz
- Methods: https://paperswithcode.com/media/about/methods.json.gz
- Datasets: https://paperswithcode.com/media/about/datasets.json.gz
Crossref
150M+ scholarly works, DOI registry.| Field | Details |
|---|---|
| URL | https://www.crossref.org |
| API Docs | https://api.crossref.org |
| Signup | Not required ("polite pool" with email) |
| Rate Limit | 50/sec polite pool, lower without |
# Recent AI works
curl "https://api.crossref.org/works?query=artificial+intelligence&filter=from-pub-date:[email protected]"
3. 🚀 Startup & Product Launches
Product Hunt API
Daily product launches with traction metrics.| Field | Details |
|---|---|
| URL | https://www.producthunt.com |
| API Docs | https://api.producthunt.com/v2/docs |
| Signup | https://www.producthunt.com/v2/oauth/applications |
| Type | GraphQL |
| Commercial Use | Requires permission (email [email protected]) |
- Posts (launches)
- Topics (categories)
- Users (makers)
- Collections
HackerNews API (Algolia)
Real-time developer sentiment and launches.| Field | Details |
|---|---|
| URL | https://hn.algolia.com |
| API Docs | https://hn.algolia.com/api |
| Signup | Not required |
| Rate Limit | 10,000 requests/hour |
# Search stories
curl "https://hn.algolia.com/api/v1/search?query=YC+launch&tags=story"
Search by date
curl "https://hn.algolia.com/api/v1/search_by_date?query=Series+A&tags=story"
Front page items
curl "https://hn.algolia.com/api/v1/search?tags=front_page"
Official Firebase API:
# Real-time top stories
curl "https://hacker-news.firebaseio.com/v0/topstories.json"
Item details
curl "https://hacker-news.firebaseio.com/v0/item/8863.json"
Reddit API
Subreddit signals for startup traction.| Field | Details |
|---|---|
| URL | https://www.reddit.com |
| API Docs | https://www.reddit.com/dev/api |
| Signup | https://www.reddit.com/prefs/apps |
| Rate Limit | 60 requests/minute (OAuth) |
| Key Subreddits | r/startups, r/SaaS, r/entrepreneur, r/machineLearning |
- Launch announcements
- Product feedback sentiment
- Competitor mentions
- Hiring posts
4. 📰 News & Events
GDELT (Global Database of Events, Language, and Tone)
World's largest open news dataset.| Field | Details |
|---|---|
| URL | https://www.gdeltproject.org |
| API | Google BigQuery (free 1TB/month) |
| Bulk Data | https://www.gdeltproject.org/data.html |
| Update Frequency | Every 15 minutes |
- News from 100+ languages
- Events, themes, emotions
- Geographic tagging
- 215+ years historical
SELECT * FROM gdelt-bq.full.events
WHERE SQLDATE >= 20260301
AND Actor1Name LIKE '%artificial intelligence%'
LIMIT 100
GlobeNewswire RSS
Press releases (competitor to PRNewswire).| Field | Details |
|---|---|
| URL | https://www.globenewswire.com |
| RSS Feeds | https://www.globenewswire.com/RssFeed/subjectcode/25-Mergers%20and%20Acquisitions/feedTitle/GlobeNewswire%20-%20Mergers%20and%20Acquisitions |
| Categories | M&A, Funding, Earnings, Product Launches |
- All news:
https://www.globenewswire.com/RssFeed/feedTitle/GlobeNewswire - Technology:
https://www.globenewswire.com/RssFeed/industry/30-Technology/feedTitle/Technology - M&A:
https://www.globenewswire.com/RssFeed/subjectcode/25-Mergers%20and%20Acquisitions/
BusinessWire RSS
Another major press release wire.| Field | Details |
|---|---|
| URL | https://www.businesswire.com |
| RSS | https://www.businesswire.com/portal/site/home/news/ |
| Categories | By industry and geography |
NewsAPI
News aggregation from 150K+ sources.| Field | Details |
|---|---|
| URL | https://newsapi.org |
| Signup | https://newsapi.org/register |
| Free Tier | 100 requests/day, dev only |
| Paid | From $449/month |
| Limitation | Free tier cannot be used in production |
5. 💼 Jobs & Hiring Signals
RemoteOK API
Remote tech jobs - free JSON API.| Field | Details |
|---|---|
| URL | https://remoteok.com |
| API | https://remoteok.com/api |
| Signup | Not required |
| Terms | Must link back to RemoteOK |
| Format | JSON array |
curl "https://remoteok.com/api" -H "User-Agent: YourApp/1.0"
Data Includes:
- Company name
- Position
- Tags (skills)
- Date posted
- Salary (when available)
GitHub Jobs (Deprecated) → Alternatives
| Alternative | URL | Notes |
|---|---|---|
| Adzuna | https://developer.adzuna.com | Free tier available |
| Jooble | https://jooble.org/api/about | Free for non-commercial |
| The Muse | https://www.themuse.com/developers/api/v2 | Company data + jobs |
| Arbeitnow | https://arbeitnow.com/api | European tech jobs |
LinkedIn (Scraping)
No public API, but critical for:- Company employee counts (growth signal)
- Job postings (hiring = funding)
- "Excited to announce" posts (funding news)
- Skills/tech stack data
- Proxycurl (paid API): https://nubela.co/proxycurl
- Phantombuster (automation): https://phantombuster.com
- Apify actors: https://apify.com/store
6. 🏛️ Government & Regulatory Data
India Data.gov.in
Open Government Data Platform.| Field | Details |
|---|---|
| URL | https://data.gov.in |
| Signup | https://data.gov.in/user/register |
| API Key | Required for API access |
| Datasets | 500,000+ |
- Company registrations (MCA)
- GST registrations
- Import/export data
- Startup India registrations
USPTO PatentsView
US patent data - AI/tech innovation signals.| Field | Details |
|---|---|
| URL | https://patentsview.org |
| API Docs | https://search.patentsview.org/docs/ |
| Signup | Not required |
| Type | ElasticSearch-based |
curl "https://search.patentsview.org/api/v1/patent/?q={\"patent_title\":\"machine learning\"}&f=[\"patent_number\",\"patent_title\",\"patent_date\"]"
European Patent Office (EPO)
European patents.| Field | Details |
|---|---|
| URL | https://www.epo.org |
| API Docs | https://developers.epo.org |
| Signup | Required |
| Free Tier | Available |
7. 🐙 Code & Developer Activity
GitHub API
Developer activity, trending repos, tech adoption.| Field | Details |
|---|---|
| URL | https://api.github.com |
| API Docs | https://docs.github.com/en/rest |
| Signup | https://github.com/settings/tokens |
| Rate Limit | 60/hour (unauth), 5000/hour (auth) |
# Trending (unofficial)
curl "https://api.gitterapp.com/repositories?language=python&since=daily"
Search repos
curl "https://api.github.com/search/repositories?q=llm+language:python&sort=stars&order=desc"
User/org activity
curl "https://api.github.com/users/{username}/events"
Signals:
- Star velocity → project traction
- Fork activity → adoption
- Contributor growth → team scaling
- Dependency usage → tech adoption
GitLab API
Alternative to GitHub.| Field | Details |
|---|---|
| URL | https://gitlab.com |
| API Docs | https://docs.gitlab.com/ee/api/ |
| Rate Limit | 2000/minute authenticated |
npm Registry
JavaScript package adoption.| Field | Details |
|---|---|
| URL | https://registry.npmjs.org |
| API | https://github.com/npm/registry/blob/master/docs/REGISTRY-API.md |
| No Auth Required | ✅ |
# Package metadata
curl "https://registry.npmjs.org/{package}"
Download counts
curl "https://api.npmjs.org/downloads/point/last-month/{package}"
PyPI (Python Package Index)
Python package data.| Field | Details |
|---|---|
| URL | https://pypi.org |
| API Docs | https://warehouse.pypa.io/api-reference/ |
| No Auth Required | ✅ |
# Package metadata
curl "https://pypi.org/pypi/{package}/json"
8. 🌍 Alternative Data Sources
CommonCrawl
Petabytes of web crawl data.| Field | Details |
|---|---|
| URL | https://commoncrawl.org |
| Access | S3 (free via AWS Open Data) |
| Size | 3.15 billion pages per crawl |
| Use Case | Tech stack detection, company discovery |
Kaggle Datasets
Community-contributed datasets.| Field | Details |
|---|---|
| URL | https://www.kaggle.com/datasets |
| API Docs | https://github.com/Kaggle/kaggle-api |
| Signup | Required |
- Crunchbase snapshots (historical)
- LinkedIn company data
- GitHub activity
- AngelList data
Internet Archive Wayback Machine
Historical website data.| Field | Details |
|---|---|
| URL | https://archive.org |
| API Docs | https://archive.org/help/wayback_api.php |
| No Auth Required | ✅ |
# Check availability
curl "http://archive.org/wayback/available?url=example.com"
CDX API for bulk
curl "http://web.archive.org/cdx/search/cdx?url=*.example.com&output=json"
📋 Signup Checklist
Here's what to sign up for to get started:
Tier 1: Essential (Sign up today)
| Service | Signup URL | What You Get |
|---|---|---|
| Semantic Scholar | https://www.semanticscholar.org/product/api#api-key-form | API key for research papers |
| Product Hunt | https://www.producthunt.com/v2/oauth/applications | Developer token |
| GitHub | https://github.com/settings/tokens | Personal access token |
| Hugging Face | https://huggingface.co/join | Hub API access |
| OpenCorporates | https://opencorporates.com/api_accounts/new | Company data API |
| Data.gov.in | https://data.gov.in/user/register | Indian government data |
| Google Cloud | https://console.cloud.google.com | BigQuery for GDELT (1TB free) |
Tier 2: Nice to Have
| Service | Signup URL | What You Get |
|---|---|---|
| https://www.reddit.com/prefs/apps | OAuth app for subreddit data | |
| NewsAPI | https://newsapi.org/register | News aggregation (dev only) |
| Crossref | No signup needed | Just use polite pool with email |
| USPTO PatentsView | No signup needed | Patent search |
Tier 3: Consider Later
| Service | Signup URL | Notes |
|---|---|---|
| Proxycurl | https://nubela.co/proxycurl | LinkedIn data (paid) |
| Adzuna | https://developer.adzuna.com | Jobs API |
| Apify | https://apify.com | Web scraping platform |
🛠️ Implementation Notes
Recommended Tech Stack for Ingestion
┌─────────────────────────────────────────────────────────┐
│ INGESTION LAYER │
├───────────────┬───────────────┬───────────────┬─────────┤
│ Scheduled │ Webhooks │ RSS │ Manual │
│ (cron) │ (realtime) │ (polling) │ (bulk) │
└───────┬───────┴───────┬───────┴───────┬───────┴────┬────┘
│ │ │ │
└───────────────┴───────────────┴────────────┘
│
┌──────────▼──────────┐
│ PostgreSQL + FTS │
│ (unified store) │
└──────────┬──────────┘
│
┌────────────────┼────────────────┐
│ │ │
┌──────▼──────┐ ┌──────▼──────┐ ┌──────▼──────┐
│ GraphQL │ │ Dashboard │ │ Webhooks │
│ API │ │ UI │ │ (alerts) │
└─────────────┘ └─────────────┘ └─────────────┘
Database Schema (Simplified)
-- Core entities
CREATE TABLE companies (
id SERIAL PRIMARY KEY,
name TEXT NOT NULL,
domain TEXT,
jurisdiction TEXT,
founded_date DATE,
employee_count INT,
funding_total BIGINT,
last_funding_date DATE,
tech_stack TEXT[],
sources JSONB,
created_at TIMESTAMPTZ DEFAULT NOW(),
updated_at TIMESTAMPTZ DEFAULT NOW()
);
CREATE TABLE funding_rounds (
id SERIAL PRIMARY KEY,
company_id INT REFERENCES companies(id),
amount BIGINT,
currency TEXT DEFAULT 'USD',
round_type TEXT, -- seed, series_a, etc
announced_date DATE,
investors TEXT[],
source TEXT, -- sec_edgar, news, etc
source_url TEXT,
raw_data JSONB
);
CREATE TABLE papers (
id SERIAL PRIMARY KEY,
arxiv_id TEXT UNIQUE,
title TEXT NOT NULL,
abstract TEXT,
authors JSONB,
categories TEXT[],
published_date DATE,
citation_count INT,
embeddings VECTOR(768) -- for similarity search
);
CREATE TABLE launches (
id SERIAL PRIMARY KEY,
source TEXT, -- producthunt, hackernews
source_id TEXT,
name TEXT,
tagline TEXT,
url TEXT,
upvotes INT,
comments INT,
launched_at TIMESTAMPTZ,
topics TEXT[]
);
🔗 Related Resources
- SEC EDGAR Full-Text Search: https://efts.sec.gov/LATEST/search-index
- arXiv Bulk Access: https://info.arxiv.org/help/bulk_data.html
- GDELT BigQuery: https://blog.gdeltproject.org/google-bigquery-gkg/
- GitHub Trending (Unofficial): https://github.com/huchenme/github-trending-api
Next Steps
This is a living document. Last updated: March 4, 2026. Have a free data source we missed? Email [email protected]