Data & Analytics
Tapping into the usage history of your Kado Ramp widget
Our Data & Analytics are as always a WIP. Check back for updates as we build out these offerings.
You can see a JSON of all the transactions completed through your integrated widget in the following link:
GET
https://api.kado.money/v1/organizations/[Your API Key]/orders
Query Parameters
Name
Type
Description
skip
Number
Number of orders to skip for pagination
limit
Number
The number of on-ramps and off-ramps to return in the response
Example Response
GET 200 https://api.kado.money/v1/organizations/[Your API Key]/orders
{
success: boolean,
message: string,
data: {
onRamps: [
{
_id: string,
walletAddress: string,
createdAt: string,
receiveUnitCount: number,
type: string,
walletType: string,
cryptoCurrency: string,
network: string,
paidAmountUsd: number,
paymentMethod: string,
}
],
offRamps: [
{
_id: string,
walletAddress: string,
createdAt: string,
type: string,
walletType: string,
cryptoCurrency: string,
network: string,
depositUnitCount: number,
receiveUsd: number,
disburseMethod: string,
}
]
}
}
Coming soon:
A more complete integrator dashboard
Last updated
Was this helpful?