Documentation Index
Fetch the complete documentation index at: https://docs.credprotocol.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Returns a mock enhanced credit report that simulates combining on-chain data with off-chain metrics. Use this to test your integration with the enhanced report endpoint.
SANDBOX: This endpoint returns mock data for testing only. Do not use for production decisions.
Path Parameters
Any Ethereum address (e.g., 0x742d35Cc6634C0532925a3b844Bc9e7595f0Ab17)
Request Body
Source name for the additional data (e.g., “Coinbase Account”)
Simulated off-chain asset value in USD
Simulated off-chain collateral value in USD
Simulated off-chain transaction count
Response
The response includes mock on-chain data plus the additional off-chain data merged into the summary.
Combined summary metrics (mock on-chain + provided off-chain)
The off-chain data source information you provided
curl -X POST "https://api.credprotocol.com/api/v2/sandbox/report/address/0x742d35Cc6634C0532925a3b844Bc9e7595f0Ab17" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Coinbase Account",
"total_asset_usd": 75000,
"count_transactions": 450
}'
{
"report": {
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0Ab17",
"timestamp": "2024-01-15T10:30:00Z",
"summary": {
"total_asset_usd": 175000.00,
"count_transactions": 1450
},
"additional": {
"source": {
"name": "Coinbase Account",
"data": {
"total_asset_usd": 75000,
"count_transactions": 450
}
}
},
"chains": []
}
}
- Response Time: Instant (no blockchain queries)
- Quota: Does not count against your API quota