Access real-time stock data, financial statements, insider trades, and more. No API key required for basic access.
https://lician.comRate Limits: 100 requests/minute for anonymous users
Attribution: Required for embed endpoints - include "Powered by Lician" link
/api/v1/prices/snapshotGet current stock price and daily change
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
curl "https://lician.com/api/v1/prices/snapshot?ticker=AAPL"{
"snapshot": {
"ticker": "AAPL",
"price": 185.92,
"day_change": 2.34,
"day_change_percent": 1.27,
"volume": 45234567,
"market_cap": 2890000000000
}
}/api/v1/financials/income-statementsGet income statements (quarterly or annual)
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
| period | string | No | quarterly or annual (default: quarterly) |
| limit | number | No | Number of periods (default: 4) |
curl "https://lician.com/api/v1/financials/income-statements?ticker=AAPL&period=quarterly&limit=4"{
"income_statements": [
{
"ticker": "AAPL",
"report_period": "2024-09-30",
"period": "quarterly",
"revenue": 94930000000,
"gross_profit": 43879000000,
"operating_income": 29592000000,
"net_income": 14736000000
}
]
}/api/v1/financials/balance-sheetsGet balance sheet data
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
| period | string | No | quarterly or annual |
| limit | number | No | Number of periods |
curl "https://lician.com/api/v1/financials/balance-sheets?ticker=AAPL"{
"balance_sheets": [
{
"ticker": "AAPL",
"report_period": "2024-09-30",
"total_assets": 352583000000,
"total_liabilities": 290437000000,
"shareholders_equity": 62146000000
}
]
}/api/v1/financials/cash-flow-statementsGet cash flow statement data
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
| period | string | No | quarterly or annual |
| limit | number | No | Number of periods |
curl "https://lician.com/api/v1/financials/cash-flow-statements?ticker=AAPL"{
"cash_flow_statements": [
{
"ticker": "AAPL",
"report_period": "2024-09-30",
"operating_cash_flow": 26810000000,
"investing_cash_flow": -1923000000,
"financing_cash_flow": -29168000000,
"free_cash_flow": 23910000000
}
]
}/api/v1/insider-tradesGet SEC Form 4 insider transactions
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | No | Filter by ticker |
| limit | number | No | Number of trades (default: 50) |
curl "https://lician.com/api/v1/insider-trades?ticker=AAPL&limit=10"{
"insider_trades": [
{
"ticker": "AAPL",
"insider_name": "Tim Cook",
"insider_title": "CEO",
"transaction_type": "S-Sale",
"shares": 50000,
"price": 185.50,
"value": 9275000,
"filing_date": "2024-12-15"
}
]
}/api/v1/institutional-ownershipGet 13F institutional holder data
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
| limit | number | No | Number of holders |
curl "https://lician.com/api/v1/institutional-ownership?ticker=AAPL&limit=10"{
"holdings": [
{
"ticker": "AAPL",
"holder_name": "Vanguard Group",
"shares": 1340000000,
"value": 248710000000,
"percent_of_shares": 8.72,
"report_date": "2024-09-30"
}
]
}/api/embed/stockGet stock data for embedding (CORS enabled)
| Name | Type | Required | Description |
|---|---|---|---|
| ticker | string | Yes | Stock ticker symbol |
| callback | string | No | JSONP callback function |
curl "https://lician.com/api/embed/stock?ticker=AAPL"{
"ticker": "AAPL",
"name": "Apple Inc.",
"price": 185.92,
"change": 2.34,
"changePercent": 1.27,
"volume": 45234567,
"source": "lician.com",
"attribution": {
"text": "Powered by Lician",
"url": "https://lician.com",
"required": true
}
}Questions? Contact us at api@lician.com
Data provided by Lician.