Audit a Coin

Audit a coin and retrieve a score representing CoinChomp's confidence of it not being a scam.

POST /api/v1/coins/audit

Content Type: application/json

Required Parameters

  • chain (string) - The blockchain network you want to launch a token on (Currently only 'solana' is supported).

  • contractAddress (string) - The contract address (CA) of the coin.

Example Request

curl -X POST "https://api.coinchomp.com/api/v1/coins/audit" \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{
  "chain": "solana",
  "contractAddress": "31ZsWDGgVT33YXD5gpmTwrVtghe2YuEkqmsipmekpump"
}'

The above request will return some json containing a requestId which you can use to query the status of the request.

{
    "success": true,
    "requestId": "epxq3IVI8FUq7WhBQ5qM"
}

Last updated