Overview
Aletheia provides financial data including insider trading filings, earnings call transcripts, and financial statements for US-listed companies. It requires a free API key and is built around SEC filing data, making it valuable for investment research tools and financial analytics projects. The free tier gives you access to a range of endpoints with reasonable rate limits.
Beginner Tip
Register at aletheiaapi.com to get a free API key. Start with the /InsiderTrading endpoint to explore SEC Form 4 filings — filter by ticker symbol to focus on a company you know.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Aletheia",
"description": "Insider trading data, earnings call analysis, financial statements, and more",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
issuerTicker Stock ticker symbol of the company that issued the securities reportingName Full name of the insider who filed the Form 4 transactionDate Date the insider transaction occurred transactionType Type of transaction such as buy (P) or sell (S) sharesTraded Number of shares bought or sold in the transaction pricePerShare Price per share at which the transaction was executed Implementation Example
const url = "https://aletheiaapi.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →Alpaca
Alpaca provides real-time and historical market data for US equities and ETFs, along with commission-free trading capabilities.
Alpha Vantage
⭐ Beginner's PickAlpha Vantage delivers free real-time and historical stock, forex, and cryptocurrency data through a simple REST API.
Bank Data API
Bank Data API lets you instantly validate IBAN and SWIFT/BIC numbers to make sure bank account details are correct before processing a payment.
Billplz
Billplz is a payment platform API focused on the Malaysian market that lets you create bills and collect payments online.
Boleto.Cloud
Boleto.Cloud is a Brazilian payment API that lets you generate boletos — the popular Brazilian bank slip payment method used widely for bills and online purchases.