FinancialReports
  1. GICS Classifications
FinancialReports
  • FinancialReports API Documentation
  • Companies
    • List Companies
      GET
    • Retrieve Company Details
      GET
  • Filings
    • List Filings
      GET
    • Retrieve Filing Details
      GET
  • Processed Filings
    • Retrieve Processed Filing Content
      GET
  • Filing Types
    • List Filing Types
      GET
    • Retrieve Filing Type
      GET
  • GICS Classifications
    • List GICS Sectors
      GET
    • List GICS Industry Groups
      GET
    • List GICS Industries
      GET
    • List GICS Sub-Industries
      GET
    • Retrieve GICS Sector
      GET
    • Retrieve GICS Industry Group
      GET
    • Retrieve GICS Industry
      GET
    • Retrieve GICS Sub-Industry
      GET
  • Sources
    • List Data Sources
      GET
    • Retrieve Data Source
      GET
  • Watchlist
    • Get User's Watchlist
      GET
    • Add Company to Watchlist
      POST
    • Remove Company from Watchlist
      DELETE
  • schema
    • schema_retrieve
      GET
  1. GICS Classifications

List GICS Sectors

GET
/sectors/
GICS Classifications
Retrieve a paginated list of GICS Sectors. Supports filtering by code (exact, case-insensitive, or multiple values) and partial name search.

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
Successfully retrieved the list of sectors.
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-05-24 05:59:30
Previous
Retrieve Filing Type
Next
List GICS Industry Groups
Built with