DORRS Data
Login
Client APIBlockchain

Ownership & Permissions by Address

GET
/backend/api/v1/{network}/contract_ownership_and_permission/

Get Ownership and Permission by Address

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

network*string

Blockchain network the contract lives on.

  • Ethereum - ethereum
  • Polygon - polygon
  • Solana - solana
  • Algorand - algorand
  • Avalanche - avalanche
  • Arbitrum - arbitrum
  • Base - base
  • Optimism - optimism
  • BNB Chain - bsc
  • Linea - linea
  • Celo - celo
  • Mantle - mantle
  • Gnosis - gnosis
  • Sei - sei
  • XDC - xdc
  • Fraxtal - fraxtal
  • Plume - plume
  • HyperEVM - hyperevm
  • ZKsync Era - zksync
  • NEAR - near
  • Stellar - stellar
  • Sui - sui
  • XRP Ledger - xrpl
  • MANTRA - mantra

Query Parameters

contract_address*string

Response Body

application/json

application/json

application/json

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    }  ]}
{  "code": 401,  "message": "Authentication credentials were not provided."}
{  "code": 403,  "message": "You do not have permission to perform this action."}
{  "message": "Internal Server Error",  "code": 500}