โ† All skills
Tencent SkillHub ยท Developer Tools

Bank Statement Converter

Convert PDF bank statements to CSV or JSON using API calls with support for password-protected files and processing status checks.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Convert PDF bank statements to CSV or JSON using API calls with support for password-protected files and processing status checks.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Bank Statement Converter Skill

Convert PDF bank statements to CSV/JSON.

Requirements

BANKSTATEMENT_API_KEY

Setup

Register here https://bankstatementconverter.com/legacy-register Verify your email Login https://bankstatementconverter.com/login Get your API key here https://bankstatementconverter.com/settings export BANKSTATEMENT_API_KEY="your-api-key-here"

Get your remaining credits and user info

curl -s -H "Authorization: $BANKSTATEMENT_API_KEY" \ https://api2.bankstatementconverter.com/api/v1/user | jq Shows user details and credits.

Upload a PDF bank statement

curl -s -X POST \ -H "Authorization: $BANKSTATEMENT_API_KEY" \ -F "file=@/path/to/your/bankstatement.pdf" \ https://api2.bankstatementconverter.com/api/v1/BankStatement | jq Response example (array of uploaded items): [ { "uuid": "bb2f3c62-331e-42ee-a931-d25a5ee0946f", "filename": "bankstatement.pdf", "pdfType": "TEXT_BASED", "state": "READY" } ] Save the uuid for the next steps. If state is PROCESSING, poll status.

Check processing status (poll if needed)

curl -s -X POST \ -H "Authorization: $BANKSTATEMENT_API_KEY" \ -H "Content-Type: application/json" \ -d '["bb2f3c62-331e-42ee-a931-d25a5ee0946f"]' \ https://api2.bankstatementconverter.com/api/v1/BankStatement/status | jq Poll every ~10 seconds until state becomes READY.

Convert PDF JSON (normalized transactions)

curl -s -X POST \ -H "Authorization: $BANKSTATEMENT_API_KEY" \ -H "Content-Type: application/json" \ -d '["bb2f3c62-331e-42ee-a931-d25a5ee0946f"]' \ "https://api2.bankstatementconverter.com/api/v1/BankStatement/convert?format=JSON&raw=false" | jq For CSV instead: change format=CSV. Add &raw=true to get all raw columns instead of normalized.

Provide password for encrypted PDF

If upload returns pdfType: UNKNOWN or indicates password needed: curl -s -X POST \ -H "Authorization: $BANKSTATEMENT_API_KEY" \ -H "Content-Type: application/json" \ -d '{"passwords": [{"uuid": "bb2f3c62-331e-42ee-a931-d25a5ee0946f", "password": "yourpdfpassword"}]}' \ https://api2.bankstatementconverter.com/api/v1/BankStatement/setPassword | jq Then poll status or convert as above.# Markdown syntax guide

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc