Skip to main content
GET
/
v2
/
api
/
core
/
transactions
/
stats
Return transactions statistics
curl --request GET \
  --url https://api.custody.api-zodia.io/v2/api/core/transactions/stats \
  --header 'X-Signature: <api-key>'
{
  "from": "2021-08-03T18:17:57Z",
  "to": "2021-08-03T18:17:57Z",
  "transferOutStats": {
    "CANCELLED BY MAKER": 110,
    "REJECTED BY AUTHORISER": 40,
    "FAILED": 367,
    "CONFIRMED": 20,
    "REJECTED BY SYSTEM": 126
  },
  "transferInStats": {
    "UNLOCKED": 994,
    "REJECTED BY SYSTEM": 37,
    "PENDING UNLOCK": 38
  }
}

Authorizations

X-Signature
string
header
required

Query Parameters

from
string

Start and inclusive date/time of the query

to
string

End and inclusive date/time of the query

Response

OK

from
string

Start and inclusive date/time of the query

Example:

"2021-08-03T18:17:57Z"

to
string

End and inclusive date/time of the query

Example:

"2021-08-03T18:17:57Z"

transferOutStats
object

Statistics per outgoing transaction status

Example:
{
"CANCELLED BY MAKER": 110,
"REJECTED BY AUTHORISER": 40,
"FAILED": 367,
"CONFIRMED": 20,
"REJECTED BY SYSTEM": 126
}
transferInStats
object

Statistics per incoming transaction status

Example:
{
"UNLOCKED": 994,
"REJECTED BY SYSTEM": 37,
"PENDING UNLOCK": 38
}