get_citing_articles
Retrieve and analyze articles citing a specific publication using PubMed and Europe PMC APIs, providing structured results including citing articles, total count, and error messages.
Instructions
获取引用该文献的文献信息
处理流程:
使用 PubMed
elink
+efetch
获取引用 PMID 列表及详情。如 PubMed 未返回结果,则回退到 Europe PMC
/citations
接口。返回统一结构:citing_articles、total_count、message、error。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
max_results | No | ||
pmid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Email"
},
"max_results": {
"default": 20,
"title": "Max Results",
"type": "integer"
},
"pmid": {
"title": "Pmid",
"type": "string"
}
},
"required": [
"pmid"
],
"type": "object"
}