API v1 (Legacy)
Reference
GET /ticker

GET /ticker

Company profile by ticker.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).
tickerstringyesStock ticker symbol.

Behavior Notes

  • Returns a single company profile if the ticker exists.
  • Returns a 400 error if ticker is 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"
}