Get detail of a contract
API Deprecation Notice
This API endpoint will be deprecated by the end of Q1 2025 as part of Skynet sunsetting.
GEThttps://api-gateway.skymavis.com/skynet/ronin/web3/v2/contracts/:contractAddress
Get detail of a contract
Request
Path Parameters
contractAddress stringrequired
ContractAddress address. Example: 0x32950db2a7164ae833121501c797d79e7b79d74c
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
result
object
{
"result": {
"address": "string",
"name": "string",
"symbol": "string",
"standard": "string",
"creator": "string",
"createdAtBlock": 0,
"verifiedName": "string",
"verifiedSymbol": "string",
"verifiedStandard": "string"
}
}
not found
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
internal error
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
"errorCode": 0,
"message": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://api-gateway.skymavis.com/skynet/ronin/web3/v2/contracts/:contractAddress' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <API_KEY_VALUE>'
ResponseClear