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/v1/get_companies
Example Request
curl --location 'https://app.daloopa.com/api/v1/get_companies' \
--header 'Authorization: Basic bWFy9NO284bXM5N2c=' \
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. |
industry_ | String | The industry to which the company belongs (e.g., Software, Oil & Gas). |
sector_ | String | The sector to which the company belongs (e.g., Information Technology, Energy). |
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., CIK, CapIQCompanyId). |
identifier_value | String | The value of the identifier (e.g., CIK number or CapIQ ID). |
Updated about 1 month ago