Explorer Integration
Integrate the CRYMBO Explorer into your systems to provide compliance visibility within your own dashboards, reports, and workflows.
Integration Options
| Method | Use Case |
|---|---|
| Direct Link | Link to Explorer pages from your application (e.g., attestation detail page) |
| API Integration | Query Explorer data programmatically for custom dashboards |
| Embedded Widget | Embed compliance status widgets in your frontend |
| Webhook Subscription | Receive real-time notifications when relevant compliance events occur |
API Example
GET /explorer/attestation/{attestationId}
Response:
{
"attestationId": "att_abc123",
"chain": "ethereum",
"status": "COMPLIANT",
"rules": ["FATF_TRAVEL_RULE"],
"timestamp": "2026-02-11T10:00:00Z",
"validators": 3,
"blockNumber": 12345678
}
Embedded Widget
Add a compliance status badge to your application:
<crymbo-compliance-badge
transaction-hash="0x..."
chain="ethereum"
theme="dark">
</crymbo-compliance-badge>