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 Sub-Industries

GET
/sub-industries/
GICS Classifications
Retrieve a paginated list of GICS Sub-Industries. Supports filtering by code, name, parent industry_code, list of industry_code_in, grandparent industry_group_code, and great-grandparent sector_code.

Request

Query Params
code
string 
optional
code__iexact
string 
optional
code__in
array[string]
optional
Multiple values may be separated by commas.
industry_code
string 
optional
Filter by parent Industry GICS code (e.g., 101010)
industry_code_in
array[string]
optional
Multiple values may be separated by commas.
industry_group_code
string 
optional
Filter by grandparent Industry Group GICS code (e.g., 1010)
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.
sector_code
string 
optional
Filter by great-grandparent Sector GICS code (e.g., 10)
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/sub-industries/' \
--header 'x-api-key;'

Responses

🟢200OK
application/json
Successfully retrieved the list of sub-industries.
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 (SubIndustry) {3}] 
required
code
string 
read-onlyrequired
GICS Sub-Industry code.
name
string 
read-onlyrequired
GICS Sub-Industry name.
industry
object 
read-onlyrequired
Parent GICS Industry.
Example
{
    "count": 123,
    "next": "http://api.example.org/accounts/?page=4",
    "previous": "http://api.example.org/accounts/?page=2",
    "results": [
        {
            "code": "string",
            "name": "string",
            "industry": {
                "code": "string",
                "name": "string",
                "industry_group": {
                    "code": "string",
                    "name": "string",
                    "sector": {
                        "code": "string",
                        "name": "string"
                    }
                }
            }
        }
    ]
}
Modified at 2025-05-24 05:59:30
Previous
List GICS Industries
Next
Retrieve GICS Sector
Built with