Skip to main content
POST
/
transactions
/
count
Count filtered transactions
curl --request POST \
  --url https://api.finup.io/backend/transactions/count \
  --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"
  }
}
'
{
  "total_records": 42,
  "total_pages": 5
}

Authorizations

x-api-key
string
header
required

Body

application/json
pagination
object
required
filters
object

Response

Success

total_records
integer
Example:

42

total_pages
integer
Example:

5