List Entities

GEThttps://v2.api.altindex.com/api/entities

List and search tracked entities.

Authentication

All endpoints require X-API-Key header authentication. See Getting Started for details.

Scope required: entities:list or entities:*.

Query Parameters

ParameterTypeDefaultDescription
searchstring-Filter entities by name or ticker (case-insensitive)
limitinteger50Maximum results to return (min: 1)
offsetinteger0Number of results to skip for pagination

Response

Returns an EntityListResponse object.

EntitySummary

Basic entity information returned in list results.

FieldTypeDescription
tickerstring | nullStock ticker symbol
namestring | nullCompany display name
industrystring | nullIndustry classification
domainstring | nullCompany website domain

EntityListResponse

Paginated list of entities.

FieldTypeDescription
itemsEntitySummary[]Array of entity summaries
limitintegerLimit used in the request
offsetintegerOffset used in the request
totalintegerTotal number of matching entities

Error Responses

StatusCodeDescription
401MISSING_API_KEYNo API key provided in the X-API-Key header
403INVALID_API_KEYAPI key is invalid or has been revoked
403INSUFFICIENT_SCOPEAPI key does not have the required entities:list scope
429RATE_LIMIT_EXCEEDEDDaily request limit exceeded

For the full error envelope format, see Error Handling.

GET/api/entities
cURL
curl -X GET "https://v2.api.altindex.com/api/entities?search=apple&limit=10" \
  -H "X-API-Key: your_api_key_here"
200Retrieved
{
  "items": [
    {
      "ticker": "AAPL",
      "name": "Apple",
      "industry": "Computer Hardware",
      "domain": "apple.com"
    }
  ],
  "limit": 10,
  "offset": 0,
  "total": 1
}