cURL
curl --request GET \ --url http://localhost:3000/api/v1/companies/{identifier} \ --header 'Authorization: Bearer <token>'
{ "company": { "id": "comp_apple123", "name": "Apple Inc.", "slug": "apple-inc", "ticker_symbol": "AAPL", "aliases": [ "Apple Computer", "Apple Computer Inc." ], "article_count": 42, "story_count": 15 } }
Returns detailed information about a single company, including alternative names (aliases), article and story counts, and stock listing details. Look up by company ID (e.g. comp_apple123) or ticker symbol (e.g. AAPL, VOLV-B.ST).
comp_apple123
AAPL
VOLV-B.ST
API Key authentication using Bearer token
Bearer token for authentication
Company ID or ticker symbol
Company retrieved successfully
Show child attributes