Skip to main content
GET
/
v1
/
reports
/
{id}
Get a report
curl --request GET \
  --url https://api.swippee.com/v1/reports/{id} \
  --header 'Authorization: Bearer <token>'
{
  "report_id": "cl_abc123",
  "status": "complete",
  "statement": {
    "bank": "Nabil Bank",
    "bank_code": "NABIL",
    "currency": "NPR",
    "period": {
      "from": "2023-12-25",
      "to": "2023-12-25"
    },
    "opening_balance": 123,
    "closing_balance": 123,
    "total_transactions": 123
  },
  "signals": {},
  "monthly_summary": [
    {}
  ],
  "categories": {},
  "merchant_categories": {},
  "transactions": [
    {
      "date": "2023-12-25",
      "description": "<string>",
      "debit": 123,
      "credit": 123,
      "balance": 123,
      "category": "merchant_payment",
      "merchant": "Example Store",
      "merchantTerminal": "2222000000000000",
      "mcc": "5411",
      "merchantCategory": "groceries"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.swippee.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Your API key from the dashboard, sent as Authorization: Bearer swippee_sk_live_....

Path Parameters

id
string
required

Response

The report

report_id
string
Example:

"cl_abc123"

status
string
Example:

"complete"

statement
object
signals
object
monthly_summary
object[]
categories
object
merchant_categories
object
transactions
object[]