API Documentation

APIs List:

Validate Score

Request:

curl --location 'https://partner.aag.ventures/api/risk-score?chainId=1&address=0x000'
--header 'x-api-key: partner-api-key'

Response Examples:

{
    "responseCode": "ok",
    "data": {
        "risk": 4,
        "messages": [
            {
                "walletAddress": "0x000000000000000000000000000000000000",
                "type": "WARNING",
                "message": "This wallet has no history"
            }
        ],
        "requiresMemo": true
    }
}
{
    "responseCode": "ok",
    "data": {
        "risk": 10,
        "messages": [
            {
                "walletAddress": "0xe72681Aee64b958e1F9dF7dB9eEa98d1296Bc36C",
                "type": "CRITICAL",
                "message": "Potential fraud. Wallet address found in reddit.com",
                "reason": "https://www.reddit.com/r/CryptoCurrency/comments/1ajx16d/17m_stolen_in_3_days/?share_id=Lt4DborAIeLZ_di0CoCOQ&utm_content=1&utm_medium=android_app&utm_name=androidcss&utm_source=share&utm_term=1"
            }
        ]
    }
}

Last updated