GET
/
stats
curl --request GET \
  --url https://public-api.kiwify.com/v1/stats \
  --header 'Authorization: Bearer <token>' \
  --header 'x-kiwify-account-id: <api-key>'
{
  "credit_card_approval_rate": 50,
  "total_sales": 3,
  "total_net_amount": 25956,
  "refund_rate": 25,
  "chargeback_rate": 0,
  "total_boleto_generated": 2,
  "total_boleto_paid": 1,
  "boleto_rate": 50
}

Authorizations

x-kiwify-account-id
string
header
required
Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

product_id
string
Example:

"ba385b7c-cac1-4422-925d-7f707d8267d2"

start_date
string
end_date
string

Response

200
application/json
Statistics data
credit_card_approval_rate
number
Example:

50

total_sales
number
Example:

3

total_net_amount
number
Example:

25956

refund_rate
number
Example:

25

chargeback_rate
number
Example:

0

total_boleto_generated
number
Example:

2

total_boleto_paid
number
Example:

1

boleto_rate
number
Example:

50