Network: Connect
Wallet address: Connect

Incidents

Get Incidents for a Given Account Address
Returns all incidents associated with a given account address. Note; the suspect account address is parsed out of transactions that were submitted as the destination account ('to' account). It is assumed that the destination account is the account of the bad actor.

    http://cryptodelos.xyz/api/incidents
      ?suspectAccountHash=accountAddress
          
Try this endpoint in your browser

Query Parameters
Parameter Description
suspectAccountHash the string representing the address to be queried for incidents
Sample response

    [
      {
        "dateTime": 1645643839185,
        "transactionHash": "0xabcd1234",
        "submitterAccountHash": "0xefgh1234",
        "suspectAccountHash": "0xijkl1234",
        "network": "ethereummainnet",
        "confirmationStatus": ANONYMOUS,
        "confirmedAt": 0,
        "note": "A note about this incident added by the submitter."
      }
    ]