Query the stock and OTC ticker symbols supported by Massive
Query the stock and OTC ticker symbols supported by Massive. Each result carries the ticker, company name, primary exchange, security type, CIK and OpenFIGI identifiers, and whether the asset still trades. Can't find what you're looking for? POST feedback to /feedback, no charge.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
634 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://agent.massive.com/v3/reference/tickers
| Category | Company and compliance |
|---|---|
| Provider host | agent.massive.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 8 from 4 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 634 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"active": true,
"limit": 100,
"order": "asc",
"sort": "ticker"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"active": {
"description": "Specify if the tickers returned should be actively traded on the queried date. Default is true.",
"type": "boolean"
},
"cik": {
"description": "Specify the CIK of the asset you want to search for. Find more information about CIK codes [at their website](https://www.sec.gov/edgar/searchedgar/cik.htm). Defaults to empty string which queries all CIKs.",
"type": "string"
},
"cusip": {
"description": "Specify the CUSIP code of the asset you want to search for. Find more information about CUSIP codes [at their website](https://www.cusip.com/identifiers.html#/CUSIP). Defaults to empty string which queries all CUSIPs. Note: Although you can query by CUSIP, due to legal reasons we do not return the CUSIP in the response.",
"type": "string"
},
"date": {
"description": "Specify a point in time to retrieve tickers available on that date. Defaults to the most recent available date.",
"format": "date",
"type": "string"
},
"exchange": {
"description": "Specify the asset's primary exchange Market Identifier Code (MIC) according to [ISO 10383](https://www.iso20022.org/market-identifier-codes). Defaults to empty string which queries all exchanges.",
"type": "string"
},
"limit": {
"default": 100,
"description": "Limit the number of results returned, default is 100 and max is 1000.",
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"market": {
"description": "Filter by market type. By default all markets are included.",
"enum": [
"stocks",
"otc"
],
"type": "string"
},
"order": {
"description": "Order results based on the `sort` field.",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"search": {
"description": "Search for terms within the ticker and/or company name.",
"type": "string"
},
"sort": {
"default": "ticker",
"description": "Sort field used for ordering.",
"enum": [
"ticker",
"name",
"market",
"locale",
"primary_exchange",
"type",
"currency_symbol",
"currency_name",
"base_currency_symbol",
"base_currency_name",
"cik",
"composite_figi",
"share_class_figi",
"last_updated_utc",
"delisted_utc"
],
"type": "string"
},
"ticker": {
"description": "Specify a ticker symbol. Defaults to empty string which queries all tickers.",
"type": "string"
},
"ticker.gt": {
"description": "Range by ticker.",
"type": "string"
},
"ticker.gte": {
"description": "Range by ticker.",
"type": "string"
},
"ticker.lt": {
"description": "Range by ticker.",
"type": "string"
},
"ticker.lte": {
"description": "Range by ticker.",
"type": "string"
},
"type": {
"description": "Specify the type of the tickers. Find the types that we support via our [Ticker Types API](https://massive.com/docs/rest/stocks/tickers/ticker-types). Defaults to empty string which queries all types.",
"enum": [
"CS",
"ADRC",
"ADRP",
"ADRR",
"UNIT",
"RIGHT",
"PFD",
"FUND",
"SP",
"WARRANT",
"INDEX",
"ETF",
"ETN",
"OS",
"GDR",
"OTHER",
"NYRS",
"AGEN",
"EQLK",
"BOND",
"ADRW",
"BASKET",
"LT"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}