get_company_news
Company news · salt-okunur
News from Yahoo Finance's news module for a ticker or keyword: title, publisher,
published_at, url, summary, source. No sentiment or interpretation is added. Coverage is
mostly English wire/press; for Turkish primary sources use search_disclosures.
Parametreler
| ad | tip | zorunlu | varsayılan | açıklama |
|---|---|---|---|---|
ticker |
string |
— | — | BIST ticker (mapped to .IS) or any Yahoo symbol |
query |
string |
— | — | Free-text search instead of a ticker (English works best, e.g. 'Turkish Airlines') |
limit |
integermaximum=50, minimum=1 |
— | 10 |
|
start_date |
string |
— | — | YYYY-MM-DD; filters on published_at |
end_date |
string |
— | — | |
tab |
enum: news | press releases | all |
— | "news" |
Girdi şeması
{
"properties": {
"ticker": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "BIST ticker (mapped to .IS) or any Yahoo symbol",
"title": "Ticker"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Free-text search instead of a ticker (English works best, e.g. 'Turkish Airlines')",
"title": "Query"
},
"limit": {
"default": 10,
"maximum": 50,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"start_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "YYYY-MM-DD; filters on published_at",
"title": "Start Date"
},
"end_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "End Date"
},
"tab": {
"default": "news",
"enum": [
"news",
"press releases",
"all"
],
"title": "Tab",
"type": "string"
}
},
"title": "get_company_newsArguments",
"type": "object"
}
Çıktı şeması
{
"additionalProperties": true,
"title": "get_company_newsDictOutput",
"type": "object"
}