- FinancialReports API Documentation
- Companies
- Filings
- Processed Filings
- Filing Types
- GICS Classifications
- Sources
- Watchlist
- schema
Retrieve Company Details
GET
/companies/{id}/
Companies
Lookup by ISIN, LEI, or Ticker directly on this endpoint (e.g., using the identifier in the URL path) is not supported.
To find a company using these identifiers, please use the list endpoint with the appropriate filter query parameters, for example:
?isin=US0378331005
, ?lei=HWUPKR0MPOU8FGXBT394
, or ?ticker=AAPL
.Request
Path Params
id
integer
required
Header Params
x-api-key
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.financialreports.eu/companies//' \
--header 'x-api-key;'
Responses
🟢200OK
application/json
Body
id
integer
read-onlyrequired
name
string
read-onlyrequired
lei
string
read-onlyrequired
country_code
string | null
read-onlyrequired
sector
null | allOf {1}
read-onlyrequired
object (Sector)
optional
industry_group
null | allOf {1}
read-onlyrequired
object (IndustryGroup)
optional
industry
null | allOf {1}
read-onlyrequired
object (Industry)
optional
sub_industry
null | allOf {1}
read-onlyrequired
object (SubIndustry)
optional
ir_link
string <uri>
read-onlyrequired
homepage_link
string <uri>
read-onlyrequired
date_public
string <date> | null
read-onlyrequired
date_ipo
string <date>
read-onlyrequired
main_stock_exchange
string
read-onlyrequired
social_facebook
string <uri> | null
read-onlyrequired
social_instagram
string <uri> | null
read-onlyrequired
social_twitter
string <uri> | null
read-onlyrequired
social_linkedin
string <uri> | null
read-onlyrequired
social_youtube
string <uri> | null
read-onlyrequired
social_tiktok
string <uri> | null
read-onlyrequired
social_pinterest
string <uri> | null
read-onlyrequired
social_xing
string <uri> | null
read-onlyrequired
social_glassdoor
string <uri> | null
read-onlyrequired
year_founded
string <date> | null
read-onlyrequired
corporate_video_id
string | null
read-onlyrequired
served_area
string | null
read-onlyrequired
headcount
integer | null
read-onlyrequired
contact_email
string <email> | null
read-onlyrequired
ticker
string | null
read-onlyrequired
is_listed
boolean
read-onlyrequired
Example
{
"id": 0,
"name": "string",
"lei": "string",
"country_code": "string",
"sector": {
"code": "string",
"name": "string"
},
"industry_group": {
"code": "string",
"name": "string",
"sector": {
"code": "string",
"name": "string"
}
},
"industry": {
"code": "string",
"name": "string",
"industry_group": {
"code": "string",
"name": "string",
"sector": {
"code": "string",
"name": "string"
}
}
},
"sub_industry": {
"code": "string",
"name": "string",
"industry": {}
},
"ir_link": "http://example.com",
"homepage_link": "http://example.com",
"date_public": "2019-08-24",
"date_ipo": "2019-08-24",
"main_stock_exchange": "string",
"social_facebook": "http://example.com",
"social_instagram": "http://example.com",
"social_twitter": "http://example.com",
"social_linkedin": "http://example.com",
"social_youtube": "http://example.com",
"social_tiktok": "http://example.com",
"social_pinterest": "http://example.com",
"social_xing": "http://example.com",
"social_glassdoor": "http://example.com",
"year_founded": "2019-08-24",
"corporate_video_id": "string",
"served_area": "string",
"headcount": 0,
"contact_email": "user@example.com",
"ticker": "string",
"is_listed": true
}
Modified at 2025-05-24 05:59:30