searchStockExchanges

abstract fun searchStockExchanges(searchRequest: StockExchangeSearchRequestDto, acceptLanguage: String, page: Int, size: Int, sorting: List<SortOrder>): StockExchangeSearchResponseDto

Searches for stock exchanges based on the provided search request parameters.

Return

The response containing the search results, including the paging information and the list of stock exchanges found.

Parameters

searchRequest

The search parameters for the stock exchange search. Can include the stock exchange code (MIC), operational market identification code, or acronym.

acceptLanguage

The language preference for the response. Should be a 2-character ISO 639-1 language code.

page

The page number of the result set to retrieve. Starts from 1 for the first page.

size

The number of items to retrieve per page.

sorting

The sorting order for the result set. Each sort order object contains a sort direction (ASC or DESC) and a field name to sort on.