Single Company Search
Search a single company's information by ISIN, ticker, LEI or company name
Endpoint
POST /v1/company_report/company_search
Description
This API provides comprehensive company data retrieval capabilities, enabling users to query corporate entities by any of below identifiers to get company's information including company logo, parent/child company relationship mapping, etc.
isin: ISIN code
ticker: Stock ticker
lei: LEI code
name: Company name
Parameters
Parameter
Type
Required
Description
isin
string
Yes
ISIN code
ticker
string
Yes
Stock ticker
lei
string
Yes
LEI code
name
string
Yes
Company name
Any of isin
or ticker
or lei
or name
is required, not all of four parameters are required.
Example Request
bash
curl -X 'POST'
'https://api.orbitfin.ai/v1/company_report/company_search'
-H 'accept: application/json'
-H 'X-API-KEY: Bearer YOUR_API-KEY'
-H 'Content-Type: application/json'
-d '{ "isin": "US0378331005" }'
Example Response
bash
{
"status_code": 200,
"data": [
{
"orbit_entity_id": "1-4295905573",
"name": "APPLE INC",
"png_logo_path": "https://ot-cdn.s3.us-west-2.amazonaws.com/company-logos/v1/4c894180cf354f2d88a9741e95dcd914.png",
"children": [
{
"isin": "US0378331005",
"ticker": "AAPL"
}
]
}
],
"message": "Search successful"
}
Error Code
Code
Description
400
Insufficient user balance.
401
Unauthorized access. Invalid API key.
Last updated