bc_get_europepmc_fulltext
Retrieve full text XML content from Europe PMC using a PMC ID. This tool enables access to biomedical literature for AI systems, facilitating research and knowledge extraction.
Instructions
Get the full text XML for a given PMC ID from Europe PMC.
Args: pmc_id (str): PMC ID starting with "PMC" (e.g., "PMC11629965").
Returns: dict: Full text XML content or error message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pmc_id | Yes | PMC ID starting with 'PMC' (e.g., 'PMC11629965') |
Input Schema (JSON Schema)
{
"properties": {
"pmc_id": {
"description": "PMC ID starting with 'PMC' (e.g., 'PMC11629965')",
"title": "Pmc Id",
"type": "string"
}
},
"required": [
"pmc_id"
],
"type": "object"
}