list_companies
Retrieve and filter portfolio management companies in Turkey using page, limit, sorting, and search parameters to access detailed fund-related insights.
Instructions
Portföy yönetim şirketlerini listeler
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Sayfa başına kayıt sayısı | |
max_total_funds | No | Maksimum fon sayısı | |
min_total_funds | No | Minimum fon sayısı | |
order | No | Sıralama yönü | |
page | No | Sayfa numarası | |
search | No | Şirket adı veya kodu ile arama | |
sort | No | Sıralama alanı |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Sayfa başına kayıt sayısı",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"max_total_funds": {
"description": "Maksimum fon sayısı",
"minimum": 0,
"type": "number"
},
"min_total_funds": {
"description": "Minimum fon sayısı",
"minimum": 0,
"type": "number"
},
"order": {
"description": "Sıralama yönü",
"enum": [
"ASC",
"DESC"
],
"type": "string"
},
"page": {
"description": "Sayfa numarası",
"minimum": 1,
"type": "number"
},
"search": {
"description": "Şirket adı veya kodu ile arama",
"type": "string"
},
"sort": {
"description": "Sıralama alanı",
"type": "string"
}
},
"type": "object"
}