Skip to main content
POST
/
v1
/
enrich
Enrich transactions
curl --request POST \
  --url https://api.swippee.com/v1/enrich \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "transactions": [
    {
      "description": "<string>",
      "debit": 123,
      "credit": 123
    }
  ]
}
'
{
  "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_....

Body

application/json
transactions
object[]
required

Response

Enriched transactions

data
object[]