search_by_uniprot
Identify PDB structures linked to a UniProt accession by entering the accession number. Retrieve up to 1,000 results to explore protein data relationships.
Instructions
Find PDB structures associated with a UniProt accession
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of results to return (1-1000, default: 25) | |
uniprot_id | Yes | UniProt accession number |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Number of results to return (1-1000, default: 25)",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"uniprot_id": {
"description": "UniProt accession number",
"type": "string"
}
},
"required": [
"uniprot_id"
],
"type": "object"
}