get_fulltext
Retrieve full text content of scientific articles from PubMed using PMIDs to access complete research papers.
Instructions
Get full text content of PubMed articles using PMIDs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pmids | Yes | Array of PubMed IDs (PMIDs) to get full text for |
Input Schema (JSON Schema)
{
"properties": {
"pmids": {
"description": "Array of PubMed IDs (PMIDs) to get full text for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"pmids"
],
"type": "object"
}