FinancialReports
  1. sectors
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. sectors

sectors_list

GET
/sectors/
sectors
Retrieve a list of all available GICS Sectors.

Request

Query Params
code
string 
optional
code__iexact
string 
optional
code__in
array[string]
optional
Multiple values may be separated by commas.
name__icontains
string 
optional
page
integer 
optional
A page number within the paginated result set.
page_size
integer 
optional
Number of results to return per page.
search
string 
optional
A search term.
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/sectors/' \
--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 (Sector) {2}] 
required
code
string 
read-onlyrequired
GICS Sector code.
name
string 
read-onlyrequired
GICS Sector name.
Example
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "code": "string",
      "name": "string"
    }
  ]
}
Modified at 2025-04-23 09:48:35
Previous
schema_retrieve
Next
sectors_retrieve
Built with