Skip to main content
GET
/
v1
/
merchants
/
transactions
/
overview
Get merchant transactions overview
curl --request GET \
  --url https://api-sandbox.rinne.com.br/core/v1/merchants/transactions/overview \
  --header 'x-api-key: <api-key>'
{
  "by_status": {
    "PROCESSING": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "AUTHORIZED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "APPROVED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "REFUNDED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "PARTIALLY_REFUNDED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "PENDING_REFUND": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "CHARGEDBACK": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "WAITING_PAYMENT": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "REFUSED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    },
    "EXPIRED": {
      "count": 150,
      "volume": 1500000,
      "average": 10000
    }
  },
  "daily_aggregation": [
    {
      "date": "2025-01-15",
      "count": 10,
      "volume": 100000
    }
  ]
}

Authorizations

x-api-key
string
header
required

Company API key for authentication

Query Parameters

created_at_from
string<date>
required

Start creation date (inclusive). Local calendar day in time_zone. Format is YYYY-MM-DD.

created_at_to
string<date>
required

End creation date (inclusive). Local calendar day in time_zone. Format is YYYY-MM-DD. Must be later or equal to created_at_from. Max range is 90 days.

merchant_id
string

Merchant ID

time_zone
string
default:America/Sao_Paulo

IANA time zone used to interpret dates and group by local day. Defaults to America/Sao_Paulo.

Response

Overview of merchant transactions

Overview of merchant transactions grouped by status with daily aggregation

by_status
object
required

Statistics for each transaction status. All possible statuses are included, even if count is zero.

daily_aggregation
object[]
required

Daily aggregation of successful transactions (APPROVED, AUTHORIZED) only