Skip to main content
POST
/
verify
/
etherscan
Verify an Etherscan verified contract
curl --request POST \
  --url https://api.example.com/verify/etherscan \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>",
  "chainId": "<string>",
  "apiKey": "<string>"
}
'
{
  "result": [
    {
      "address": "<string>",
      "chainId": "<string>",
      "status": "<string>",
      "message": "<string>",
      "libraryMap": {}
    }
  ]
}

Body

address
string<address>
required
chainId
string<supported-chainId>
required
apiKey
string

Response

The contract has been successfully checked or sourcified

result
object[]