Alpha Vantage · Schema
CompanyOverview
Company fundamental data including financial ratios and business description
FintechMarket DataStocksFXCryptoCommoditiesEconomic IndicatorsTechnical IndicatorsFundamentalsNewsSentimentFree
Properties
| Name | Type | Description |
|---|---|---|
| Symbol | string | Stock ticker symbol |
| Name | string | Company name |
| Description | string | Company business description |
| Exchange | string | Stock exchange listing |
| Currency | string | Trading currency code |
| Country | string | Country of incorporation |
| Sector | string | Business sector |
| Industry | string | Industry classification |
| MarketCapitalization | string | Total market capitalization in USD |
| PERatio | string | Price-to-earnings ratio |
| EPS | string | Earnings per share (TTM) |
| DividendYield | string | Annual dividend yield as decimal |
| Beta | string | Beta coefficient relative to S&P 500 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://www.alphavantage.co/schemas/alpha-vantage-company_overview-schema.json",
"title": "CompanyOverview",
"type": "object",
"description": "Company fundamental data including financial ratios and business description",
"properties": {
"Symbol": {
"type": "string",
"description": "Stock ticker symbol"
},
"Name": {
"type": "string",
"description": "Company name"
},
"Description": {
"type": "string",
"description": "Company business description"
},
"Exchange": {
"type": "string",
"description": "Stock exchange listing"
},
"Currency": {
"type": "string",
"description": "Trading currency code"
},
"Country": {
"type": "string",
"description": "Country of incorporation"
},
"Sector": {
"type": "string",
"description": "Business sector"
},
"Industry": {
"type": "string",
"description": "Industry classification"
},
"MarketCapitalization": {
"type": "string",
"description": "Total market capitalization in USD"
},
"PERatio": {
"type": "string",
"description": "Price-to-earnings ratio"
},
"EPS": {
"type": "string",
"description": "Earnings per share (TTM)"
},
"DividendYield": {
"type": "string",
"description": "Annual dividend yield as decimal"
},
"Beta": {
"type": "string",
"description": "Beta coefficient relative to S&P 500"
}
}
}