Skip to main content
Every supertransaction executed by your project is queryable through the dashboard API. Use it to build reporting, reconcile gas spend, or export your full history.

Endpoint

Authenticate with your project API key from dashboard.biconomy.io. Each item in the response includes the supertransaction hash, execution status, chain ids, and payment details (fee token, gas fee, amounts), which is everything needed for cost accounting.

Query parameters

Fetching a time range

First request: provide the window and cursor=true.
Each response carries a pagination object:
While hasNextPage is true, repeat the request with &before=<nextCursor> appended:
When hasNextPage is false you have covered the whole requested window.

Complete example

Tips

  • For long backfills, iterate month by month, then run a small incremental job for new data.
  • Individual supertransactions can be inspected in detail on MEE Explorer (https://meescan.biconomy.io/details/{stx_hash}) or via the explorer API described in the tracking section.