Skip to main content
📝

WordPress

Upload and reconcile bank statements from your WordPress admin.

Setup Guide

  1. Download the BSM Reconciliation plugin from below.
  2. Go to your WordPress admin → Plugins → Add New → Upload Plugin.
  3. Upload the bsm-reconciliation.zip file and activate the plugin.
  4. Go to Tools → BSM Reconciliation → Settings.
  5. Enter your BSM API key and verify the connection.
  6. Upload both your bank statement and expected transactions to reconcile.

Download Plugin

Download the latest version of the BSM WordPress plugin.

API Key for WordPress

Quick Start Example

# Upload a bank statement via API
curl -X POST https://app.bankstatementmatcher.com/api/v1/jobs \
  -H "Authorization: Bearer bsm_your_api_key" \
  -F "bank=@statement.pdf" \
  -F "expected=@orders.csv"

# Check job status
curl https://app.bankstatementmatcher.com/api/v1/jobs/{job_id} \
  -H "Authorization: Bearer bsm_your_api_key"

# Get results
curl https://app.bankstatementmatcher.com/api/v1/jobs/{job_id}/results \
  -H "Authorization: Bearer bsm_your_api_key"