GET /graph
Entity lookup and search endpoint.
Description
Returns entity information for companies and cryptocurrencies.
Behavior depends on parameters:
symbol=<ticker>: Returns entities matching the exact ticker symbol.input=<search>: Searches entities by name or ticker (partial match), returns top 5 results.- No symbol/input: Returns all active entities.
Endpoint
GET https://api.altindex.com/graph/Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey | string | Yes | Your API key. apiKey also works. |
symbol | string | No | Exact ticker symbol to look up (e.g., TSLA). |
input | string | No | Search string for partial name/ticker matching (returns top 5). |
entity | string | No | Filter by entity type: company or crypto. |
source | string | No | Include additional fields. Use jobs to add glassdoor, linkedin fields. |
Example Request
curl "https://api.altindex.com/graph/?apiKey=YOUR_API_KEY&symbol=TSLA"Example Response
{
"status": 200,
"results": [
{
"id": "1",
"name": "Tesla",
"logo": "https://altindex.com/assets/images/tickers/TSLA.jpg",
"domain": "tesla.com",
"ticker": "TSLA",
"description": "Tesla, Inc. designs, develops, manufactures...",
"industry": "Autos"
}
]
}Response Fields
| Field | Type | Description |
|---|---|---|
status | integer | HTTP status code |
results | array | Array of entity objects |
results[].id | string | Entity ID |
results[].name | string | Company/entity name |
results[].logo | string | URL to entity logo |
results[].domain | string | Company domain |
results[].ticker | string | Ticker symbol |
results[].description | string | Company description |
results[].industry | string | Industry classification |
results[].market | string | Exchange/market (only in search mode) |