Get Total Transactions

Get Total Transactions

GET {{Environment_URL}}/vendors/v1/charges/total

This endpoint returns the aggregated value of transactions filtered by status (SUCCEEDED or PENDING).

Based on the provided status query parameter, the response includes:

  • The total amount of transactions matching the status.

  • The corresponding converted amountUSD.

  • The total number of transactions (num) for that status.

  • The currency in which these transactions are denominated.

Use this endpoint to quickly obtain summarized volume information for successful or pending transactions.

Headers

Name
Value

Authorization

Bearer <token>

Query Params

Key
Description
Required
Data Type
Example

status

Created transaction status. Can be SUCCEEDED or PENDING

true

String

SUCCEEDED

Response

{
  "data": [
  	{
			"amount": 115734,
			"amountUSD": 115734,
			"num": 17,
			"currency": "USD"
		}
	]
}