v1
latestOpenAPI 3.0.3Proprietary2026-07-244065126.5 KBConsumption
List companies accessed by the user
Return the companies the authenticated user has previously pulled data from.
Behavior
- Returns one entry per company the user has accessed.
- Results are ordered by company_id ascending.
Response
- A paginated list of accessed companies.
- Each record exposes company_id, company_name and ticker of the company, plus first_accessed_at (the first time the user accessed it).
get/api/v2/consumption/companies
Query parameters
limitinteger
Number of results to return per page.
offsetinteger
The initial index from which to return results.
Response
Example response
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100"
}