get_bank_by_code
Retrieve detailed information about a specific Brazilian bank using its unique code, sourced from the Brasil API. Simplify banking data integration for applications and AI systems.
Instructions
Get information from a specific bank given its code. The code from each bank is returned by get_all_banks tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"type": "number"
}
},
"required": [
"code"
],
"type": "object"
}