searchStockNews
Find stock-related news by entering ticker symbols or company names. Track financial developments using date ranges and customizable result limits for targeted insights.
Instructions
Search for stock-related news using the FMP Search Stock News API. Find specific stock news by entering a ticker symbol or company name to track the latest developments.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date (YYYY-MM-DD) | |
limit | No | Limit on number of results (default: 20, max: 250) | |
page | No | Page number (default: 0) | |
symbols | Yes | Comma-separated list of stock symbols | |
to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"limit": {
"description": "Limit on number of results (default: 20, max: 250)",
"type": "number"
},
"page": {
"description": "Page number (default: 0)",
"type": "number"
},
"symbols": {
"description": "Comma-separated list of stock symbols",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbols"
],
"type": "object"
}