Search_News
Retrieve news search results using query parameters like keywords, country, language, and result count. Ideal for integrating targeted news discovery into applications via API-Market MCP Server.
Instructions
Retrieve news search results based on query parameters
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | No | Number of results to return | |
country | No | Country code | |
q | Yes | Search query | |
search_lang | No | Search language | |
spellcheck | No | Enable spellcheck |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of results to return",
"type": "integer"
},
"country": {
"description": "Country code",
"type": "string"
},
"q": {
"description": "Search query",
"type": "string"
},
"search_lang": {
"description": "Search language",
"type": "string"
},
"spellcheck": {
"description": "Enable spellcheck",
"type": "boolean"
}
},
"required": [
"q"
],
"type": "object"
}