FinancialReports
  1. sources
FinancialReports
  • FinancialReports API Documentation
  • companies
    • companies_list
      GET
    • companies_retrieve
      GET
  • filing-types
    • filing_types_list
      GET
    • filing_types_retrieve
      GET
  • filings
    • filings_list
      GET
    • filings_retrieve
      GET
  • industries
    • industries_list
      GET
    • industries_retrieve
      GET
  • industry-groups
    • industry_groups_list
      GET
    • industry_groups_retrieve
      GET
  • schema
    • schema_retrieve
      GET
  • sectors
    • sectors_list
      GET
    • sectors_retrieve
      GET
  • sources
    • sources_list
      GET
    • sources_retrieve
      GET
  • sub-industries
    • sub_industries_list
      GET
    • sub_industries_retrieve
      GET
  • processed-filings
    • processed_filings_retrieve
      GET
  1. sources

sources_list

GET
/sources/
sources
Retrieve a list of all available data sources.

Request

Query Params
page
integer 
optional
A page number within the paginated result set.
page_size
integer 
optional
Number of results to return per page.
Header Params
x-api-key
string 
required

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.financialreports.eu/sources/' \
--header 'x-api-key;'

Responses

🟢200OK
application/json
Body
count
integer 
required
Example:
123
next
string <uri> | null 
optional
Example:
http://api.example.org/accounts/?page=4
previous
string <uri> | null 
optional
Example:
http://api.example.org/accounts/?page=2
results
array[object (Source) {3}] 
required
name
string 
read-onlyrequired
Name of the data source.
url
string <uri>
read-onlyrequired
URL of the data source homepage or relevant section.
description
string 
read-onlyrequired
Description of the data source.
Example
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "name": "string",
      "url": "http://example.com",
      "description": "string"
    }
  ]
}
Modified at 2025-04-23 09:48:35
Previous
sectors_retrieve
Next
sources_retrieve
Built with