GET Fetch List of Companies
Description
Using this API you can fetch list of companies for which Daloopa has available datasheet.
Request Format
GET https://app.daloopa.com/api/v2/companies
Example Request
curl --request GET \
--url https://app.daloopa.com/api/v2/companies \
--header 'Authorization: Basic APIKEY'
Response
Status : 200
Output: JSON
The API returns a list of objects, each representing a company with various details such as the company name, ticker symbol, industry, sector, and identifiers.
Response Schema
Field Name | Data Type | Description |
---|---|---|
name | String | The name of the company. |
ticker | String | The ticker symbol of the company. |
model_updated_at | String (datetime ISO 8601) | Timestamp when the model was last updated |
earliest_quarter | String | First period with available data for the company |
latest_quarter | String | Latest period with available data for the company |
companyidentifier_set | Array of Objects | A set of company identifiers, each containing two properties: identifier_type and identifier_value . |
companyidentifier_set Schema
Each entry in the companyidentifier_set
array consists of:
Field Name | Data Type | Description |
---|---|---|
identifier_type | String | The type of the identifier (e.g., ISIN, CIK, CapIQCompanyId). |
identifier_value | String | The value of the identifier (e.g., ISIN, CIK number or CapIQ ID). |
Note:
When mapping companies internally, we recommend using ISIN as the primary identifier for consistency and global compatibility. In Daloopa’s database, ISINs are stored with a prefix "I_" (e.g., I_US0378331005), so you may need to strip or parse this prefix when performing matching or comparisons.
If an ISIN is not available, we suggest falling back to CIK, and then to CapIQCompanyId, in that order of priority.
If you’re unable to map a company using these identifiers, please contact our support team for assistance.
Updated 12 days ago