Skip to main content
GET
/
v1
/
reports
/
{id}
/
transactions
List transactions
curl --request GET \
  --url https://api.swippee.com/v1/reports/{id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "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

Query Parameters

category
string

Coarse class, e.g. salary, merchant_payment, transfer.

merchant_category
string

Spend sub-category, e.g. dining, groceries, fuel.

direction
enum<string>
Available options:
credit,
debit
since
string<date>
until
string<date>
limit
integer
default:500
Required range: x <= 1000

Response

Filtered transactions

data
object[]