Skip to main content
POST
https://api.credprotocol.com
/
api
/
v2
/
sandbox
/
report
/
address
/
{address}
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": []
  }
}

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

address
string
required
Any Ethereum address (e.g., 0x742d35Cc6634C0532925a3b844Bc9e7595f0Ab17)

Request Body

name
string
required
Source name for the additional data (e.g., “Coinbase Account”)
total_asset_usd
number
Simulated off-chain asset value in USD
total_collateral_usd
number
Simulated off-chain collateral value in USD
count_transactions
integer
Simulated off-chain transaction count

Response

The response includes mock on-chain data plus the additional off-chain data merged into the summary.
report.summary
object
Combined summary metrics (mock on-chain + provided off-chain)
report.additional
object
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": []
  }
}

Performance

  • Response Time: Instant (no blockchain queries)
  • Quota: Does not count against your API quota