chaingpt_get_ai_crypto_news
Fetch real-time AI-related crypto and Web3 news by sourcing, filtering, deduplicating, and summarizing updates from trusted outlets like CoinDesk and social platforms like Twitter. Customize results by category, token, or search query. Default returns 10 articles with links to original sources.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
categoryId | No | The category ID of the news to fetch. | |
fetchAfter | No | The date after which to fetch the news. Provide a JavaScript Date object or a date string (which will be interpreted in UTC by the API). For example, fetchAfter: new Date('2024-01-01') will fetch news items published from January 1, 2024 onward. This is useful for getting news within a certain time range (e.g., only recent news). | |
limit | No | The number of news to fetch. Default is 10. You can increase this to retrieve more articles in one call (e.g. limit: 20 for 20 articles). Note that higher limits will consume additional credits. MIN: 10 | |
offset | No | The offset of the news to fetch. Default is 0. This is used for pagination. For example, to get the second page of results when using a limit of 10, you would set offset: 10 (skip the first 10 articles, return the next set). Similarly, offset: 20 would fetch the third page (items 21–30), and so on. | |
searchQuery | No | The search query to fetch the news. | |
sortBy | No | The field to sort the news by. Default and currently only supported field is 'createdAt'. | |
subCategoryId | No | The sub-category ID of the news to fetch. | |
tokenId | No | The token ID of the news to fetch. |