Get Entity

GEThttps://v2.api.altindex.com/api/entities/{ticker}

Retrieve detailed information about a specific entity.

Authentication

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

Scope required: entities:detail or entities:*.

Path Parameters

ParameterTypeDescription
tickerstringStock ticker symbol (e.g., AAPL, TSLA)

Response

Returns an EntityDetail object.

EntityDetail

Extended entity information with social handles.

FieldTypeDescription
tickerstring | nullStock ticker symbol
namestring | nullCompany display name
industrystring | nullIndustry classification
domainstring | nullCompany website domain
descriptionstring | nullCompany description
social_handlesSocialHandlesSocial media handles object

SocialHandles

Social media handles for an entity. A null value indicates the company doesn't have a presence on that platform or we haven't tracked it yet.

FieldTypeDescription
xstring | nullX (Twitter) handle
instagramstring | nullInstagram username
threadsstring | nullThreads username
tiktokstring | nullTikTok username
pintereststring | nullPinterest username
redditstring | nullSubreddit name (without r/)
youtubestring | nullYouTube channel name
facebookstring | nullFacebook page ID (stringified)

For extended descriptions of each handle field, platform-specific behavior, and coverage details, see Entities in the Data Dictionary.

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:detail scope
404ENTITY_NOT_FOUNDThe requested ticker does not exist
429RATE_LIMIT_EXCEEDEDDaily request limit exceeded

For the full error envelope format, see Error Handling.

GET/api/entities/{ticker}
cURL
curl -X GET "https://v2.api.altindex.com/api/entities/AAPL" \
  -H "X-API-Key: your_api_key_here"
200Retrieved
{
  "ticker": "AAPL",
  "name": "Apple",
  "industry": "Computer Hardware",
  "domain": "apple.com",
  "description": "Apple Inc is designs, manufactures and markets mobile communication and media devices and personal computers, and sells a variety of related software, services, accessories, networking solutions and third-party digital content and applications.",
  "social_handles": {
    "x": "apple",
    "instagram": "apple",
    "threads": null,
    "tiktok": "apple",
    "pinterest": "apple",
    "reddit": "apple",
    "youtube": "apple",
    "facebook": "apple"
  }
}