Ai Bot APIai-bot.cn ↗
Search and retrieve the latest artificial intelligence news articles by date and keyword to stay updated on industry developments and trends. Access daily curated content from ai-bot.cn to find relevant stories that match your specific interests.
curl -X GET 'https://api.parse.bot/scraper/ac7c7d64-3549-47d0-8764-6686bdfb989e/search_articles?keyword=DeepSeek' \ -H 'X-API-Key: $PARSE_API_KEY'
Search daily AI news articles by keyword and/or date. Fetches the latest news page (covering approximately the last 3-4 months of workday updates) and filters articles whose title or content contains the keyword. Returns articles sorted by date descending (newest first). Each request fetches the full page from the source (~450 articles); filtering is applied locally.
| Param | Type | Description |
|---|---|---|
| date | string | Filter articles to a specific date in ISO format YYYY-MM-DD (e.g. 2026-08-13). When omitted, articles from all available dates are returned. |
| limit | integer | Maximum number of articles to return. Clamped to 1-100. |
| keyword | string | Search keyword matched case-insensitively against article title and content. When omitted, no keyword filter is applied. |
{
"type": "object",
"fields": {
"total": "Total number of articles matching the filters before limit is applied",
"articles": "Array of article objects with date, title, content, source, and link"
},
"sample": {
"data": {
"total": 2,
"articles": [
{
"date": "2026-08-13",
"link": "https://mp.weixin.qq.com/s/XGzdn5Kk5jmaM9XYAy9JMg",
"title": "DeepSeek-V4-Pro 正式版上线",
"source": "DeepSeek",
"content": "DeepSeek 推出DeepSeek V4 Pro正式版,已同步在APP、网页端和API上线。该版本Agent能力显著增强,在Terminal Bench、DeepSWE等评测集上表现优异。"
},
{
"date": "2026-08-13",
"link": "https://mp.weixin.qq.com/s/mANdGRI4fO_sEbC1ECEoZQ",
"title": "DeepSeek Harness 开发者预览版开放测试",
"source": "DeepSeek Harness 团队",
"content": "DeepSeek Harness开发者预览版(v0.1 版本)面向全球 Harness 开发者开放测试,并同步以MIT协议开源。"
}
]
},
"status": "success"
}
}About the Ai Bot API
The Ai Bot API on Parse exposes 1 endpoint for the publicly available data on ai-bot.cn. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.