Skip to main content

CRYMBO Search API

The CRYMBO Search API allows institutions, developers, and partners to query indexed compliance data across all supported chains. This enables advanced filtering, monitoring, and insight generation without compromising user privacy.


๐Ÿ” What Can You Query?โ€‹

You can search by:

  • Transaction hash
  • Sender/receiver wallet address
  • Validator status (e.g., validated, pending)
  • Identity binding metadata
  • Compliance score thresholds
  • Timestamp ranges
  • Network (Polygon, Ethereum, etc.)

๐Ÿ”— API Endpointsโ€‹

GET /api/search/transactionsโ€‹

Query Parameters:

  • txHash: string
  • wallet: string
  • status: validated | pending | failed
  • scoreMin: integer
  • network: polygon | ethereum | etc
  • fromTimestamp, toTimestamp: UNIX epoch

Example:

GET /api/search/transactions?wallet=0xabc...&status=validated&scoreMin=80

GET /api/search/walletsโ€‹

Fetch all indexed data linked to a wallet:

GET /api/search/wallets/0xWalletAddress

Returns:

  • All compliance events
  • Role (sender/receiver)
  • Total validation attempts and success ratio

๐Ÿ” Authenticationโ€‹

All API calls require:

  • Authorization: Bearer <token> header
  • Token must be obtained from your CRYMBO developer dashboard

๐Ÿ“˜ Response Format (Simplified)โ€‹

{
"results": [
{
"txHash": "0xabc...",
"status": "validated",
"score": 92,
"network": "polygon",
"timestamp": 1713791240
}
]
}

๐Ÿงช Use Casesโ€‹

  • Display verified transactions in wallets or explorers
  • Automate compliance logs in institutional backends
  • Provide regulators with anonymized transaction reports

๐Ÿ“Œ Reach out to support@crymbo.io to request API access and test credentials.