omnia_checkNFTSecurity

Returns security details about an NFT (smart contract possible vulnerabilities, community-related risks).

Parameters

DATA, 20 Bytes - contractAddress. The NFT smart contract address that is checked. REQUIRED

Returns

Object with following details:

Example

Request

curl --request POST \
     --url https://endpoints.omniatech.io/v1/RPC_ENDPOINT \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "omnia_checknftsecurity",
    "params": [
        {
            "contractAddress": "0x76BE3b62873462d2142405439777e971754E8E77"
        }
    ]
}
'

Response

{
    "id": 1,
    "jsonrpc": "2.0",
    "result": {
        "nft_address": "0x76be3b62873462d2142405439777e971754e8e77",
        "traded_volume_24h": 19.3307,
        "red_check_mark": null,
        "total_volume": 92038.56,
        "nft_proxy": 0,
        "restricted_approval": 0,
        "highest_price": 360,
        "transfer_without_approval": {
            "value": 0
        },
        "discord_url": "https://discord.gg/parallelalpha",
        "nft_open_source": 1,
        "privileged_minting": {
            "owner_address": "0x74db0bbfde94aa80a135c5f8b60c0ca3d17332f2",
            "value": 1,
            "owner_type": "eoa"
        },
        "nft_owner_number": 58763,
        "trust_list": 0,
        "token_id": null,
        "lowest_price_24h": 0.0003,
        "average_price_24h": 0.0732,
        "nft_erc": "erc1155",
        "creator_address": "0x74db0bbfde94aa80a135c5f8b60c0ca3d17332f2",
        "medium_url": null,
        "malicious_nft_contract": 0,
        "privileged_burn": {
            "owner_address": null,
            "value": 0,
            "owner_type": null
        },
        "twitter_url": "https://twitter.com/parallelnft",
        "nft_description": "Sci-fi collectable card game with NFTs.",
        "nft_symbol": "LL",
        "self_destruct": {
            "owner_address": null,
            "value": 0,
            "owner_type": null
        },
        "metadata_frozen": null,
        "token_owner": null,
        "nft_verified": 1,
        "same_nfts": [
            {
                "nft_address": "0x4aae6652a96eab7b7be9907c9377044ecc84cf2c",
                "nft_name": "Parallel",
                "nft_owner_number": 1,
                "create_block_number": 14502533,
                "nft_symbol": "LL"
            },
            {
                "nft_address": "0x6e642794b0356f1170c65c2fa65b711c6c8c1c63",
                "nft_name": "parallel",
                "nft_owner_number": 1,
                "create_block_number": 14885561,
                "nft_symbol": "LL"
            }
        ],
        "nft_items": 1069,
        "oversupply_minting": null,
        "nft_name": "parallel",
        "github_url": null,
        "website_url": "http://www.parallel.life",
        "telegram_url": null,
        "sales_24h": 264,
        "create_block_number": 12097989
    }
}

Last updated