TopRank Skills

Official OpenClaw rules 54%

Bitpanda

Bitpanda Portfolio Skill

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Bitpanda 技能。 若已安装,则直接安装 Bitpanda 技能。

Overview

Skill Key
florianbeer/bitpanda
Author
florianbeer
Source Repo
openclaw/skills
Version
-
Source Path
skills/florianbeer/bitpanda
Latest Commit SHA
67dd0b00004e545b505b4235dc9192950523a90f

Extracted Content

SKILL.md excerpt

# Bitpanda Portfolio Skill

Check Bitpanda crypto portfolio, wallet balances, and trade history via CLI.

## Auth

API key is read from (in order):
1. `BITPANDA_API_KEY` environment variable
2. `~/.openclaw/credentials/bitpanda/config.json` → `{"api_key": "..."}`

Generate at: https://web.bitpanda.com/my-account/apikey
Recommended scopes: **Balance**, **Trade**, **Transaction**

## Commands

```bash
bitpanda portfolio                    # Non-zero wallets grouped by crypto/fiat/index
bitpanda wallets                      # All non-zero wallets with balances
bitpanda transactions --limit 20      # Recent trades
bitpanda transactions --flow buy      # Buy trades only
bitpanda transactions --flow sell     # Sell trades only
bitpanda asset BTC                    # Current price + your balance
```

## Notes

- **Read-only** — no trading or transfers
- Assets in **Bitpanda Earn/Staking** are not exposed by the API and won't show in balances
- The `asset` command uses the public ticker (no auth needed) for prices
- Pagination is automatic
- Requires: `curl`, `jq`, `bc`

README excerpt

# Bitpanda Skill

A read-only OpenClaw skill for monitoring your Bitpanda crypto portfolio, wallet balances, and trade history.

## Features

- 📊 **Portfolio Summary** — grouped overview of all holdings (crypto/fiat/index)
- 💰 **Wallet Balances** — non-zero wallets with current balances
- 📜 **Trade History** — filter buy/sell trades with limits
- 🪙 **Asset Lookup** — current price + your balance for any asset

> **Note:** Assets in Bitpanda Earn/Staking are not exposed by the API and won't appear in balances.

## Setup

1. Generate an API key at [Bitpanda Account Settings](https://web.bitpanda.com/my-account/apikey)
   - Recommended scopes: **Balance**, **Trade**, **Transaction**
2. Either set an environment variable:
   ```bash
   export BITPANDA_API_KEY="your_api_key_here"
   ```
   Or save it to a credentials file (auto-detected):
   ```bash
   mkdir -p ~/.openclaw/credentials/bitpanda
   echo '{"api_key": "your_api_key_here"}' > ~/.openclaw/credentials/bitpanda/config.json
   chmod 600 ~/.openclaw/credentials/bitpanda/config.json
   ```

## Usage

```bash
bitpanda portfolio                    # Portfolio summary
bitpanda wallets                      # Non-zero wallet balances
bitpanda transactions --limit 20      # Recent trades
bitpanda transactions --flow buy      # Buy trades only
bitpanda asset BTC                    # Price + balance for an asset
```

## API Endpoints Used

- `GET /v1/wallets` — Crypto wallet balances
- `GET /v1/fiatwallets` — Fiat wallet balances
- `GET /v1/asset-wallets` — All wallets grouped by type
- `GET /v1/trades` — Trade history
- `GET /v1/ticker` — Current prices (public, no auth)

## Security

- **Read-only** — cannot make trades or transfers
- API key stays local (env var or credentials file)
- All requests over HTTPS

## Requirements

- `curl`, `jq`, `bc`
- Bitpanda API key

## License

MIT

Related Claw Skills