GET /graph
Entity discovery and search across AltIndex's knowledge graph.
Authentication
Use the apiKey (or apikey) query parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| apiKey | string | yes | API key query parameter (case-insensitive). |
| symbol | string | no | Exact ticker match. |
| input | string | no | Partial search by display name or ticker. |
| entity | string | no | Optional filter for search results (company or crypto). |
| source | string | no | When jobs, includes job-board identifiers. |
Behavior Notes
- If
symbolis provided, the API returns exact ticker matches. - If
inputis provided, the API returns up to 5 partial matches. - If neither
symbolnorinputis provided, the API returns all active entities. source=jobsadds 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"
}
]
}