get_species
Retrieve detailed species information from FishBase with 'get_species'. Input the scientific name to access data on ecology, distribution, morphology, and more, or specify fields for tailored results.
Instructions
Get species information from FishBase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fields | No | Optional list of specific fields to return | |
species_name | Yes | Scientific name of the species (e.g., 'Salmo trutta') |
Input Schema (JSON Schema)
{
"properties": {
"fields": {
"description": "Optional list of specific fields to return",
"items": {
"type": "string"
},
"type": "array"
},
"species_name": {
"description": "Scientific name of the species (e.g., 'Salmo trutta')",
"type": "string"
}
},
"required": [
"species_name"
],
"type": "object"
}