Skip to main content
POST
/
transactions
/
summary
Summarize filtered transactions
curl --request POST \
  --url https://api.finup.io/backend/transactions/summary \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "pagination": {
    "page": 1,
    "per_page": 50,
    "sort_by": "created_at",
    "sort_direction": "desc"
  }
}
'
{
  "spent": "1250.00",
  "incoming": "2500.00",
  "pending": "100.00",
  "fees": "15.00",
  "declined": "0.00",
  "net": "1235.00"
}

Authorizations

x-api-key
string
header
required

Body

application/json
pagination
object
required
filters
object

Response

Success

spent
string
Example:

"1250.00"

incoming
string
Example:

"2500.00"

pending
string
Example:

"100.00"

fees
string
Example:

"15.00"

declined
string
Example:

"0.00"

net
string
Example:

"1235.00"