📝
Integrate Kado
  • Kado Documentation
  • Kado Products
    • ⬆️Kado On-Ramp
    • ⬇️Kado Off-Ramp
  • Integrations
    • 🧰Integrate Kado
      • ⚒️The Widget
        • 🖼️iframe Embed (Recommended)
        • 🔗New Window/Tab
        • 🔭Widget + React Demo
        • 📱Widget + Mobile Demo
      • ⚒️The Hybrid API
        • Get Quote
        • Pay via Kado Widget
        • Get Order Status
        • Advanced
      • ⚒️Sandbox
    • ✏️Customizing Your Integration
      • ✏️Parameters
      • ✏️Mobile ACH Linking
      • ✏️Integrate Stellar SEP-24 Anchor
    • 👍Best Practices
    • 🔢Data & Analytics
  • References
    • 🚀Upcoming Features
    • ❓FAQs and Coverage
Powered by GitBook
On this page

Was this helpful?

  1. Integrations

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

PreviousBest PracticesNextUpcoming Features

Last updated 10 months ago

Was this helpful?

🔢