Ticker Types

GET
/v3/reference/tickers/types

Retrieve a list of all ticker types supported by Massive. This endpoint categorizes tickers across asset classes, markets, and instruments, helping users understand the different classifications and their attributes.

Use Cases: Data classification, filtering mechanisms, educational reference, system integration.

Query Parameters
asset_class
enum (string)
Filter by asset class.
locale
enum (string)
Filter by locale.
Response Attributes
count
integer
optional
The total number of results for this request.
request_id
string
A request ID assigned by the server.
results
array (object)
optional
An array of results containing the requested data.
asset_class
enum
Enum values: crypto, fx, indices, options, stocks
An identifier for a group of similar financial instruments.
code
string
A code used by Massive to refer to this ticker type.
description
string
A short description of this ticker type.
locale
enum
Enum values: global, us
An identifier for a geographical location.
status
string
The status of this request's response.
Code Examples
curl -X GET "https://api.massive.com/v3/reference/tickers/types?asset_class=stocks&locale=us&apiKey=YOUR_API_KEY"
Query URL
GET
https://api.massive.com/v3/reference/tickers/types?apiKey=YOUR_API_KEY
Run query unavailable
Create account or sign in to Massive
Scroll to see updated query response
Response Object
{
  "count": 1,
  "request_id": "31d59dda-80e5-4721-8496-d0d32a654afe",
  "results": {
    "asset_class": "stocks",
    "code": "CS",
    "description": "Common Stock",
    "locale": "us"
  },
  "status": "OK"
}
Did you find this page helpful?
Do you still need help with something?