# Sure

> Retrieves account balances from a self-hosted Sure personal finance board using its REST API.

- Skill: `kbarbel640-del/sure` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add kbarbel640-del/sure`
- Raw SKILL.md: https://api.skillmd.com/api/skills/kbarbel640-del/sure/raw
- Safety review: CAUTION (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Finance & Business, Integrations & APIs, Accounting & Invoicing, REST & GraphQL APIs
- Tags: Accounts, Api Integration, Curl, Personal Finance, Sure
- Author: kbarbel640-del (https://skillmd.com/u/kbarbel640-del)
- Updated: 2026-08-22
- Page: https://skillmd.com/skills/kbarbel640-del/sure

---

# 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"
```

