home / skills / openclaw / skills / sure
This skill helps you retrieve reports from the Sure personal financial board by connecting via API and delivering account data.
npx playbooks add skill openclaw/skills --skill sureReview the files below or copy the command above to add this skill to your agents.
---
name: sure
description: Get report from Sure personal financial board
homepage: https://sure.am
metadata: {"clawdbot":{"emoji":"📈","requires":{"bin": ["curl"],"env":["SURE_API_KEY", "SURE_BASE_URL"]}}}
---
# Sure Skill
## Setup
1. Go to your Sure app, example : https://localhost:3000
2. Go to settings and get an API key, example : https://localhost:3000/settings/api_key
3. Export your API KEY and BASE URL as environment variables :
```bash
export SURE_API_KEY="YOUR_API_KEY"
export SURE_BASE_URL="YOUR_BASE_URL"
```
## Get accounts
List all accounts amounts
```bash
curl -H "X-Api-Key: $SURE_API_KEY" "$SURE_BASE_URL/api/v1/accounts"
```
This skill connects to the Sure personal financial board and fetches summaries and reports of your accounts. It uses the Sure API key and base URL to authenticate and retrieve account balances, transactions, and aggregated views. The skill is designed for automated backups, quick snapshots, and integration into financial workflows.
The skill reads SURE_API_KEY and SURE_BASE_URL environment variables to authenticate API requests. It calls the accounts and related endpoints to list balances and transactions, then formats the data into a concise report. You can run it to produce a snapshot of current account states or to export raw JSON for archival or downstream processing.
How do I authenticate the skill?
Set SURE_API_KEY and SURE_BASE_URL as environment variables; the skill uses those to add the X-Api-Key header and call the API.
What data does the report include?
The report typically includes account identifiers, current balances, and recent transactions depending on available endpoints and permissions.