Full report

Generate Comprehensive Wallet Report

post

Generates a full wallet report with metrics, narrative, and visualization, returning hosted URLs for each.

Authorizations
Body
wallet_addressstringRequired

Ethereum wallet address for which the report is generated.

Example: 0xYourWalletAddressHere
user_uidstringRequired

Authenticated user's unique identifier (UID).

Example: abc123-uid
Responses
200
Full wallet report generated successfully.
application/json
post
POST /api/full_report HTTP/1.1
Host: api-v2.idefi.ai
Authorization: Bearer UID
Content-Type: application/json
Accept: */*
Content-Length: 68

{
  "wallet_address": "0xYourWalletAddressHere",
  "user_uid": "abc123-uid"
}
{
  "report_url": "https://idefi.ai/reports/0xYourWalletAddressHere_full_report.html",
  "narrative_url": "https://idefi.ai/narratives/0xYourWalletAddressHere_narrative.html",
  "visualization_url": "https://idefi.ai/visualizations/0xYourWalletAddressHere_relationships.html"
}