get-news
Retrieve cryptocurrency news articles with pagination and date filtering to stay informed about market developments and trends.
Instructions
Get news articles with pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date in ISO 8601 format | |
limit | No | Number of results per page | |
page | No | Page number | |
to | No | End date in ISO 8601 format |
Input Schema (JSON Schema)
{
"properties": {
"from": {
"description": "Start date in ISO 8601 format",
"type": "string"
},
"limit": {
"default": 20,
"description": "Number of results per page",
"type": "number"
},
"page": {
"default": 1,
"description": "Page number",
"type": "number"
},
"to": {
"description": "End date in ISO 8601 format",
"type": "string"
}
},
"type": "object"
}