GET /ticker
Ticker metadata endpoint.
Description
Returns detailed metadata for a specific ticker, including company info, social media handles, and app store links.
Endpoint
GET https://api.altindex.com/ticker/Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey | string | Yes | Your API key. apiKey also works. |
ticker | string | Yes | Stock ticker symbol (e.g., TSLA). |
Example Request
curl "https://api.altindex.com/ticker/?apiKey=YOUR_API_KEY&ticker=TSLA"Example Response
{
"status": 200,
"id": "1",
"name": "Tesla",
"logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
"domain": "tesla.com",
"ticker": "TSLA",
"industry": "Autos",
"employees": "127855",
"description": "Tesla, Inc. designs, develops, manufactures...",
"facebook_id": "Tesla",
"twitter_screenname": "Tesla",
"instagram": "teslamotors",
"ios_app": "https://apps.apple.com/app/id582007913",
"android_app": "https://play.google.com/store/apps/details?id=com.teslamotors.tesla"
}Response Fields
| Field | Type | Description |
|---|---|---|
status | integer | HTTP status code |
id | string | Entity ID |
name | string | Company name |
logo | string | URL to company logo |
domain | string | Company domain |
ticker | string | Ticker symbol |
industry | string | Industry classification |
employees | string | Employee count (nullable) |
description | string | Company description |
facebook_id | string | Facebook page ID (nullable) |
twitter_screenname | string | Twitter/X handle (nullable) |
instagram | string | Instagram handle (nullable) |
ios_app | string | iOS App Store URL (nullable) |
android_app | string | Google Play Store URL (nullable) |