fetch_entry
Retrieve structured protein data from UniProtKB database using accession numbers to access detailed entry information, sequences, and annotations.
Instructions
Return a structured UniProt entry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accession | Yes | ||
| fields | No | ||
| version | No |
Input Schema (JSON Schema)
{
"properties": {
"accession": {
"title": "Accession",
"type": "string"
},
"fields": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Fields"
},
"version": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Version"
}
},
"required": [
"accession"
],
"type": "object"
}