REST API DOCS
Client APIBlockchain

Blockchain. Ownership & Permissions by Address

GET
/backend/api/v1/ethereum/contract_ownership_and_permission/

Get Ownership and Permission by Address

Notice:

In the URL pass the network

  • Ethereum - ethereum

  • Polygon - polygon

  • Solana - solana

  • Algorand - algorand

  • Avalanche - avalanche

  • Arbitrum - arbitrum

  • Base - base

  • Optimism - optimism

  • BNB Chain - bsc

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

contract_address*string

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/ethereum/contract_ownership_and_permission/?contract_address=0xe1385fdd5ffb10081cd52c56584f25efa9084015"
{  "message": "success",  "code": 200,  "data": [    {      "contract_owner": "0x49754062e35f7591b93cc4f9915965be89643a65",      "upgradeability": true,      "audit_status": null,      "transfer_restrictions": null    }  ]}