Skip to content

Get the total balance up to a specific date, at 23:59:59

[GET] https://gateway.prd.pppay.cloud/api/merchant/daily/balance

You can use this endpoint to retrieve the total balance of your account up to a specified date, always respecting D-1, considering the time of 11:59:59 PM.

Authorization

To access this endpoint, you need to include your merchant token in the request header as a Bearer token.

Examples

Retrieve the merchant's total balance up to a specific date.

curl --request GET \
     --url 'https://gateway.prd.pppay.cloud/api/merchant/daily/balance/2025-01-25' \
     --header 'Authorization: Bearer YOUR_TOKEN' \
     --header 'accept: application/json'
import requests

url = "https://gateway.prd.pppay.cloud/api/merchant/daily/balance/2025-01-25"

headers = {
    "accept": "application/json",
    "Authorization": "Bearer YOUR_TOKEN"
}

response = requests.get(url, headers=headers)

print(response.text)

Respostas

200 - Success
{
  "amount": 2267060.65
}
401 - Not autenticated
{
  "error": {
    "message": {
      "base": [
        "Not autenticated"
      ]
    },
    "status": 401
  },
  "debug": []
}