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
: stringwallet
: stringstatus
: validated | pending | failedscoreMin
: integernetwork
: polygon | ethereum | etcfromTimestamp
,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.