search_by_kingdom
Query the ITIS database to find organisms within a specified taxonomic kingdom, such as Animalia, Plantae, or Fungi, with options for pagination and result limits.
Instructions
Search for organisms within a specific kingdom in ITIS database.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
kingdom | Yes | Kingdom name (e.g., "Animalia", "Plantae", "Fungi", "Bacteria") | |
rows | No | Number of results to return (default: 10) | |
start | No | Starting index for pagination (default: 0) |
Input Schema (JSON Schema)
{
"properties": {
"kingdom": {
"description": "Kingdom name (e.g., \"Animalia\", \"Plantae\", \"Fungi\", \"Bacteria\")",
"type": "string"
},
"rows": {
"description": "Number of results to return (default: 10)",
"type": "number"
},
"start": {
"description": "Starting index for pagination (default: 0)",
"type": "number"
}
},
"required": [
"kingdom"
],
"type": "object"
}