Skip to main content
GET
/
bank_statements
/
{id}
/
results
Get bank statement results
curl --request GET \
  --url https://api.ledgerbeam.com/v1/bank_statements/{id}/results \
  --header 'API-KEY: <api-key>'
{
  "id": "bs_123456789",
  "status": "completed",
  "transactions": [
    {
      "id": "2dc6SE8A7cTQ2jUdUadCg",
      "description": "APPLE.COM/BILL",
      "amount": 9.99,
      "currency": "USD",
      "date": "2024-01-15",
      "entry_type": "outgoing",
      "account_holder_id": "35b927b6-6fda-40aa-93b8-95b47c2b2cad",
      "entity": {
        "id": "6890b942-df95-43f5-8f38-a5dcee46d24a",
        "name": "Apple",
        "type": "merchant",
        "website": "https://www.apple.com",
        "logo": "https://logos.ledgerbeam.com/www.apple.com",
        "description": "Apple is a multinational technology company...",
        "intermediaries": []
      },
      "category": {
        "primary": "Entertainment",
        "secondary": [
          "Streaming Service",
          "Digital Content"
        ],
        "accounting_category": "Subscriptions",
        "tags": [
          "streaming",
          "digital-content"
        ]
      }
    }
  ],
  "summary": {
    "total_transactions": 45,
    "total_amount": 1250.75,
    "currency": "USD"
  }
}

Overview

Retrieve the processing results of a bank statement, including extracted transactions and summary statistics.
  • Transaction Extraction: Retrieve all transactions extracted from a bank statement
  • Data Analysis: Analyze extracted transaction data
  • Integration: Import extracted transactions into other systems
  • Verification: Verify the accuracy of statement processing

Authorizations

API-KEY
string
header
required

API key for authentication

Path Parameters

id
string
required

Bank statement ID

Response

Bank statement results retrieved successfully

id
string

Bank statement ID

Example:

"bs_123456789"

status
enum<string>

Processing status

Available options:
processing,
completed,
failed
Example:

"completed"

transactions
object[]

Extracted transactions

summary
object