get-bbc-news
Fetch BBC News articles across categories like global, UK, business, politics, health, and tech. Access tailored editions for UK, US, or worldwide news updates.
Instructions
获取 BBC 新闻,提供全球新闻、英国新闻、商业、政治、健康、教育、科技、娱乐等资讯
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
edition | No | 版本,仅对 `category` 为空有效 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"category": {
"anyOf": [
{
"const": "",
"description": "热门新闻",
"type": "string"
},
{
"const": "world",
"description": "国际",
"type": "string"
},
{
"const": "uk",
"description": "英国",
"type": "string"
},
{
"const": "business",
"description": "商业",
"type": "string"
},
{
"const": "politics",
"description": "政治",
"type": "string"
},
{
"const": "health",
"description": "健康",
"type": "string"
},
{
"const": "education",
"description": "教育",
"type": "string"
},
{
"const": "science_and_environment",
"description": "科学与环境",
"type": "string"
},
{
"const": "technology",
"description": "科技",
"type": "string"
},
{
"const": "entertainment_and_arts",
"description": "娱乐与艺术",
"type": "string"
}
],
"default": ""
},
"edition": {
"anyOf": [
{
"const": "",
"type": "string"
},
{
"const": "uk",
"description": "UK",
"type": "string"
},
{
"const": "us",
"description": "US & Canada",
"type": "string"
},
{
"const": "int",
"description": "Rest of the world",
"type": "string"
}
],
"default": "",
"description": "版本,仅对 `category` 为空有效"
}
},
"type": "object"
}