API V1 (Legacy)
Reference
GET /graph

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

ParameterTypeRequiredDescription
apikeystringYesYour API key. apiKey also works.
symbolstringNoExact ticker symbol to look up (e.g., TSLA).
inputstringNoSearch string for partial name/ticker matching (returns top 5).
entitystringNoFilter by entity type: company or crypto.
sourcestringNoInclude 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

FieldTypeDescription
statusintegerHTTP status code
resultsarrayArray of entity objects
results[].idstringEntity ID
results[].namestringCompany/entity name
results[].logostringURL to entity logo
results[].domainstringCompany domain
results[].tickerstringTicker symbol
results[].descriptionstringCompany description
results[].industrystringIndustry classification
results[].marketstringExchange/market (only in search mode)