get_protein_info
Retrieve comprehensive protein details using a UniProt accession number. Choose output formats like JSON, TSV, FASTA, or XML for analysis and integration.
Instructions
Get detailed information for a specific protein by UniProt accession
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accession | Yes | UniProt accession number (e.g., P04637) | |
format | No | Output format (default: json) |
Input Schema (JSON Schema)
{
"properties": {
"accession": {
"description": "UniProt accession number (e.g., P04637)",
"type": "string"
},
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"tsv",
"fasta",
"xml"
],
"type": "string"
}
},
"required": [
"accession"
],
"type": "object"
}