GET Company Series

Description

API to retrieve paginated fundamental datapoints for selected series and periods for a specific company.

Request Format

GET https://app.daloopa.com/api/v2/companies/series

Query Parameters

Item

Data Type

Required

Description

company_id

Integer

✅ Yes

ID of the company.

keywords

List of Strings

No

List of keywords to retrieve data for (e.g., ["Revenue", "Sales"]). Limit of 15 per request.

Example Request

Pulling AAPL (company_id=2) series for "Revenue" or "Sales"

curl --request GET \
  --url 'https://app.daloopa.com/api/v2/companies/series?company_id=2&keywords=Sales&keywords=Revenue' \
  --header 'Accept: application/json' \
  --header 'Authorization: Basic APIKEY'

Response

Status : 200

Output: JSON

This API that returns a list of objects in the response field. Each object represents metadata for a series that matches the given query parameters.

Response Schema

Field NameData TypeDescription
idIntegerID of the series
full_series_nameStringThe full hierarchical context of the series within the Daloopa data (e.g., "KPIs | Customer Development | Internet Users | Technology Companies").

Response Example

[
	{
		"id": 2468002,
		"full_series_name": "Income Statement | Total cost of sales"
	},
	{
		"id": 2468013,
		"full_series_name": "Income Statement | Share-based compensation expense | Cost of sales"
	},
	{
		"id": 4293038,
		"full_series_name": "Income Statement | Total cost of sales | Products"
	},
	{
		"id": 4293039,
		"full_series_name": "Income Statement | Total cost of sales | Services"
	},
	{
		"id": 3350648,
		"full_series_name": "Segmental Breakdown | Net sales by category | Services"
	}
]