Full report
Generates a full wallet report with metrics, narrative, and visualization, returning hosted URLs for each.
Authorizations
Body
wallet_addressstringRequiredExample:
Ethereum wallet address for which the report is generated.
0xYourWalletAddressHere
user_uidstringRequiredExample:
Authenticated user's unique identifier (UID).
abc123-uid
Responses
200
Full wallet report generated successfully.
application/json
400
Bad request due to invalid or missing input.
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"
}