search_uniprot
Search the UniProtKB protein database to find curated protein entries, sequences, and annotations using flexible query parameters.
Instructions
Search UniProtKB and return curated hits.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| query | Yes | ||
| size | No | ||
| reviewed_only | No | ||
| fields | No | ||
| sort | No | ||
| include_isoform | No | 
Input Schema (JSON Schema)
{
  "properties": {
    "fields": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Fields"
    },
    "include_isoform": {
      "default": false,
      "title": "Include Isoform",
      "type": "boolean"
    },
    "query": {
      "title": "Query",
      "type": "string"
    },
    "reviewed_only": {
      "default": false,
      "title": "Reviewed Only",
      "type": "boolean"
    },
    "size": {
      "default": 10,
      "title": "Size",
      "type": "integer"
    },
    "sort": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "title": "Sort"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}