API v1 (Legacy)
Reference
GET /graph

GET /graph

Entity discovery and search across AltIndex's knowledge graph.

Authentication

Use the apiKey (or apikey) query parameter.

Parameters

NameTypeRequiredDescription
apiKeystringyesAPI key query parameter (case-insensitive).
symbolstringnoExact ticker match.
inputstringnoPartial search by display name or ticker.
entitystringnoOptional filter for search results (company or crypto).
sourcestringnoWhen jobs, includes job-board identifiers.

Behavior Notes

  • If symbol is provided, the API returns exact ticker matches.
  • If input is provided, the API returns up to 5 partial matches.
  • If neither symbol nor input is provided, the API returns all active entities.
  • source=jobs adds job-board IDs to each entity.

Example

curl "https://api.altindex.com/graph?apiKey=YOUR_API_KEY&input=tes"

Response Shape

{
  "status": 200,
  "results": [
    {
      "id": "1",
      "name": "Tesla",
      "logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
      "domain": "tesla.com",
      "ticker": "TSLA",
      "description": "Electric vehicles and energy",
      "industry": "Autos",
      "exchange": "NASDAQ"
    }
  ]
}