Skip to main content

Explorer Integration

Integrate the CRYMBO Explorer into your systems to provide compliance visibility within your own dashboards, reports, and workflows.

Integration Options

MethodUse Case
Direct LinkLink to Explorer pages from your application (e.g., attestation detail page)
API IntegrationQuery Explorer data programmatically for custom dashboards
Embedded WidgetEmbed compliance status widgets in your frontend
Webhook SubscriptionReceive 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>