Skip to main content
GET
/
api
/
v1
/
companies
/
{identifier}
Get company details
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
  }
}

Authorizations

Authorization
string
header
required

API Key authentication using Bearer token

Headers

Authorization
string
required

Bearer token for authentication

Path Parameters

identifier
string
required

Company ID or ticker symbol

Response

Company retrieved successfully

company
object
required