Reveal insights from the LedgerScan data through business intelligence tooling via Google’s Looker platform. Users and applications can generate reports via an API endpoint whereby interactive Looker reports can be easily embedded into an iframe.
Reporting can be a powerful tool in performing reconciliation of data across systems, analyzing Token market cap history and transaction volume across multiple ledgers, assessing performance across client accounts, and many more use cases.
Helpful Terminology
| Term | Meaning |
| Looker | Google’s Business Intelligence platform which enables complex reporting and insights across the LedgerScan data warehouse. |
Generate Reports
LedgerScan provides reports that can be called via API and embedded in an application’s iframe. The following sequence generates a Token Cap Table report:
| Step | Endpoint | Description |
|
1 |
GET /v1/tokens | Retrieves list of all tokens added within the tenancy. This enables an application to provide a menu of tokens to choose from when generating the report. |
|
2 |
GET /v1/reports/cap-table | Generates and retrieves the Token Cap Table report. This Looker report can be embedded in an application’s iframe yielding an interactive experience with the report. |
Another example would be generating a Wallet Activity Report as follows:
| Step | Endpoint | Description |
|
1 |
GET /v1/wallets | Retrieves list of all wallets added within the tenancy. This enables an application to provide a menu of wallets to choose from when generating the report. |
|
2 |
GET /v1/reports/wallet-activity | Generates and retrieves the Wallet Activity report. This Looker report can be embedded in an application’s iframe yielding an interactive experience with the report. |