account-balance
Retrieve your crypto account balance from exchanges like Binance or Coinbase using API keys. Supports spot, future, swap, option, and margin markets.
Instructions
Get your account balance from a crypto exchange
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | Yes | API key for authentication | |
exchange | Yes | Exchange ID (e.g., binance, coinbase) | |
marketType | No | Market type (default: spot) | |
secret | Yes | API secret for authentication |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"description": "API key for authentication",
"type": "string"
},
"exchange": {
"description": "Exchange ID (e.g., binance, coinbase)",
"type": "string"
},
"marketType": {
"description": "Market type (default: spot)",
"enum": [
"spot",
"future",
"swap",
"option",
"margin"
],
"type": "string"
},
"secret": {
"description": "API secret for authentication",
"type": "string"
}
},
"required": [
"exchange",
"apiKey",
"secret"
],
"type": "object"
}