GET /ticker
Company profile by ticker.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| ticker | string | yes | Stock ticker symbol. |
Behavior Notes
- Returns a single company profile if the ticker exists.
- Returns a
400error iftickeris missing or unknown.
Example
curl "https://api.altindex.com/ticker?apiKey=YOUR_API_KEY&ticker=TSLA"Response Shape
{
"status": 200,
"id": "1",
"name": "Tesla",
"logo": "https://dillibits.com/assets/images/tickers/TSLA.jpg",
"domain": "tesla.com",
"ticker": "TSLA",
"industry": "Autos",
"employees": "140473",
"description": "Electric vehicles and energy",
"facebook_id": "tesla",
"twitter_screenname": "tesla",
"instagram": "teslamotors",
"ios_app": "https://apps.apple.com/us/app/tesla/id123456789",
"android_app": "https://play.google.com/store/apps/details?id=com.tesla.app"
}