# Response

### Response Parameters

1. [#tokeninformation](#tokeninformation "mention")&#x20;
2. [#tokenscore](#tokenscore "mention")
3. [#marketchecks](#marketchecks "mention")
   * [#holderschecks](#holderschecks "mention")
   * [#liquiditychecks](#liquiditychecks "mention")
4. [#codechecks](#codechecks "mention")
   * [#ownershipchecks](#ownershipchecks "mention")
   * [#otherchecks](#otherchecks "mention")
5. [#honeypotdetails](#honeypotdetails "mention")

### tokenInformation

<table><thead><tr><th width="232">Field</th><th width="517">Description </th><th>Data Type</th></tr></thead><tbody><tr><td>tokenAddress</td><td>Contract address of the token</td><td>String</td></tr><tr><td>tokenName</td><td>Token name as per it's contract</td><td>String</td></tr><tr><td>tokenSymbol</td><td>Token's Ticker </td><td>String</td></tr><tr><td>tokenCreationDate</td><td>Token's creation date in ISO format</td><td>String</td></tr><tr><td>totalSupply</td><td>Total Supply of Token</td><td>String</td></tr><tr><td>ownerAddress</td><td>Token's  owner address</td><td>String</td></tr><tr><td>ownerBalance</td><td>Token  balance of owner</td><td>String</td></tr><tr><td>creatorAddress</td><td>Token creator address</td><td>String</td></tr><tr><td>creatorBalance</td><td>Token balance of creator</td><td>String</td></tr><tr><td>tokenCategories</td><td>Returns relevant categories of the token<br><br><code>[ "Stablecoins", "DeFi Ecosystem"]</code></td><td>Array</td></tr><tr><td>marketData</td><td><p>Returns </p><ol><li>Current Price in USD</li><li>Market Cap in USD</li><li>Last One Day High Price in USD</li><li>Last One Day Low Price in USD<br>of the token.</li></ol><pre class="language-json" data-overflow="wrap" data-full-width="false"><code class="lang-json">        "currentPriceUsd": "0.999898",
        "marketCapUsd": "83886972925",
        "pastOneDayHigh": "1.003",
        "pastOneDayLow": "0.993276"
</code></pre></td><td>Object</td></tr><tr><td>socialInformation</td><td><p>Returns </p><ol><li>Associated Github Repo</li><li>Twitter Handle &#x26; Number of Followers</li><li>Facebook Page &#x26; Number of Page Likes</li><li>Telegram Group &#x26; Number of Members</li><li>subReddit &#x26; Number of Subscribers</li></ol><pre class="language-json"><code class="lang-json">{
    "githubLinks": [],
       "twitter": {
            "name": "Tether_to",
            "followers": "383377"
       },
       "facebook": {
            "name": "tether.to",
            "likes": ""
       },
       "telegram": {
            "name": "",
            "users": ""
       },
       "reddit": {
            "url": "",
            "subscribers": ""
        }
}
</code></pre></td><td>Object</td></tr><tr><td>externalLinks</td><td><p>Returns</p><ol><li>CoinGecko Link of the token</li><li>Appropriate BlockExplorer Link of the token</li><li>GeckoTerminal Link of the Token</li></ol><pre class="language-json"><code class="lang-json">{
         "coinGeckoLink": "https://www.coingecko.com/en/coins/tether",
         "blockExplorerLink": "https://etherscan.io/token/0xdAC17F958D2ee523a2206206994597C13D831ec7",
         "geckoTerminal": "https://www.geckoterminal.com/eth/pools/0x4e68ccd3e89f51c3074ca5072bbac773960dfa36"
}
</code></pre></td><td>Object</td></tr></tbody></table>

### tokenScore

<table><thead><tr><th width="231">Field</th><th width="519.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>totalScore</td><td><p>Returns </p><ol><li>percent - The percentage of the code score achieved. </li><li>Achieved Score - The code score the token has achieved based on our scoring algorithm. </li><li>Max Score - Based on the available data points about the token's code, the maximum achievable score.</li><li>Min Score - Based on the available data points about the token's code, the least achievable score</li></ol><pre class="language-json"><code class="lang-json">{
         "percent": 83.02,
         "achievedScore": 220,
         "maxScore": 265,
         "minScore": -280
}
</code></pre><p></p></td><td>Object</td></tr><tr><td>codeScore</td><td><p>Returns </p><ol><li>percent - The percentage of the code score achieved. </li><li>Achieved Score - The code score the token has achieved based on our scoring algorithm. </li><li>Max Score - Based on the available data points about the token's code, the maximum achievable score.</li><li>Min Score - Based on the available data points about the token's code, the least achievable score.<br><br>Note: Each potentially malicious permissions present is given a negative score and the absence of the item is given a positive score. Sum of positives and negatives gives Achieved Score.</li></ol><pre class="language-json"><code class="lang-json">{
        "percent": 60,
        "achievedScore": 45,
        "maxScore": 75,
        "minScore": -150
}
</code></pre></td><td>Object</td></tr><tr><td>marketScore</td><td><p>Returns </p><ol><li>percent - The percentage of the market score achieved.</li><li>Achieved Score - The Market Score the token has achieved based on our scoring algorithm.</li><li>Max Score - Based on the available data points about the token's market standings, the maximum achievable score.</li><li>Min Score - Based on the available data points about the token's market standings, the least achievable score.<br><br>Note: Positive scores are given when risk is lower(for eg, when Owner Balance &#x3C; 10%) and negative scores are given when risk is higher (for eg, Number of Trading Pairs = 1). Sum of positive and negative scores gives the achievedScore.</li></ol><pre class="language-json"><code class="lang-json">{
       "percent": 92.11,
       "achievedScore": 175,
       "maxScore": 190,
       "minScore": -130
 }
</code></pre></td><td>Object</td></tr></tbody></table>

### marketChecks

#### holdersChecks

<table><thead><tr><th width="237">Field</th><th width="512.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>holdersCount</td><td><p>Returns</p><ol><li>Total number of addresses holding this token. </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. Lesser holders means more risk.</li></ol><pre class="language-json"><code class="lang-json">{
    "number": 4494236,
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
     }
}
</code></pre></td><td>Object</td></tr><tr><td>keyHolders</td><td><p><br>Returns information about Top3 holders of the token.<br> <br>It shows </p><ol><li>Address holding the token</li><li>Percentage of Total Supply that this Address holds</li><li>If the Address holding is a contract. false denotes it's an EOA and true denotes it's a contract address</li><li>Token Balance of this Holder. </li></ol><p></p><p>Note: "isContract", "isLocked" will return "" if status is unknown</p><p></p><pre class="language-json"><code class="lang-json"><strong>[
</strong><strong>    {
</strong>        "address": "0xf977814e90da44bfa03b6295a0616a897441acec",
        "percent": 5.51,
        "isContract": false,
        "balance": "2150826691.546"
    },
    {
        "address": "0x47ac0fb4f2d84898e4d9e7b4dab3c24507a6d503",
        "percent": 3.13,
        "isContract": true,
        "balance": "1220000115.495224"
    },
    {
        "address": "0xa7a93fd0a276fc1c0197a5b5623ed117786eed06",
        "percent": 2.58,
        "isContract": false,
        "balance": "1006676309.532571"
    }
]
</code></pre></td><td>Array</td></tr><tr><td>percentDistributed</td><td><p>Returns information about Token Distribution amongst holders of the token<br></p><ol><li><p>Top Three</p><ul><li>Percentage of total supply that the top 3 addresses have</li><li>Sum total of token balances of top three addresses </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li></ul></li><li><p>Top Ten</p><ul><li>Percentage of total supply that the top 10 addresses have</li><li>Sum total of token balances of top 10 addresses </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li></ul></li><li><p>Owner</p><ul><li>Percentage of total supply that the owner address has</li><li>Token balance of owner address </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li></ul></li><li><p>Creator</p><ul><li>percentage of total supply that the creator address has</li><li>Token balance of creator address </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li></ul></li><li><p>Burnt</p><ul><li>percentage of total supply that the burnt addresses has</li><li>Token balance of all burnt addresses </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li></ul></li><li><p>Other</p><ul><li>percentage of total supply with other addresses except for above categories</li><li>Token balance of all otheraddresses </li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk.</li></ul></li></ol><pre class="language-json"><code class="lang-json">{
    "topThree": {
        "percent": 11.22,
        "balance": "4377503116.573795",
         "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
    "topTen": {
        "percent": 19.04,
        "balance": "7432378686.400272",
         "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
    "owner": {
        "percent": 0.00,
        "balance": "108983.76699",
         "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
    "creator": {
        "percent": 0.00,
        "balance": "592.01",
        "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
    "burnt": {
        "percent": 0.00,
        "balance": "52.01",
        "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
    "other": {
        "percent": 0.00,
        "balance": "9298.01",
        "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
         }
    },
}

</code></pre></td><td>Object</td></tr></tbody></table>

#### liquidityChecks

<table><thead><tr><th width="235">Field</th><th width="636.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>aggregatedInformation</td><td><p>Explains Aggregated Liquidity Information of token</p><ol><li><p>totalLpSupplyInUsd</p><ul><li>Gives Total Lp Supply across all pairs in tracked DEX in Us Dollar Value</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk</li></ul></li><li><p>lpHolderCount</p><ul><li>Number of aggregated lp holders</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk</li></ul></li><li><p>tradingPairCount</p><ul><li>Number of total trading pairs</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk</li></ul></li><li><p>keyLpHolders</p><ul><li>All major lp holders as per their share in Us Dollars</li></ul></li><li><p>liquidityLockDetails</p><ul><li>upcomingUnlockDetails along with unlock time,value and risk assesment</li></ul></li><li><p>percentDistributed</p><ul><li>Aggregated distribution of liquidity in Us Dollar among categories like owner, creator, burnt, topThree, topTen, other.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk</li></ul></li></ol><pre class="language-json"><code class="lang-json">{
                "totalLpSupplyInUsd": {
                    "number": "127040928.09",
                    "risk": {
                        "riskRating": 6,
                        "riskStatus": "Great To Have"
                    }
                },
                "lpHolderCount": {
                    "number": 9095,
                    "risk": {
                        "riskRating": 6,
                        "riskStatus": "Great To Have"
                    }
                },
                "tradingPairCount": {
                    "number": 276930,
                    "risk": {
                        "riskRating": 6,
                        "riskStatus": "Great To Have"
                    }
                },
                "keyLpHolders": [
                    {
                        "address": "0x18498ab9931c671742c4ff0ca292c1876cab7384",
                        "isContract": false,
                        "balanceInUsd": "29884247.54"
                    },
                    {
                        "address": "0x1a68f74f59405dcdb5dc994adab6c1708a3da898",
                        "isContract": false,
                        "balanceInUsd": "19496485.08"
                    },
                    {
                        "address": "0xb94d77f829dddc059f0e5a30140116801f3ee47a",
                        "isContract": false,
                        "balanceInUsd": "12665646.87"
                    },
                    {
                        "address": "0xcc4ea98876f3ee733712ac64137c34e637fc2dae",
                        "isContract": false,
                        "balanceInUsd": "9255799.39"
                    },
                    {
                        "address": "0x7fba4b8dc5e7616e59622806932dbea72537a56b",
                        "isContract": true,
                        "balanceInUsd": "3271580.47"
                    },
                    {
                        "address": "0xd7a51ff8357c210d11499e251b2849d1bb35cbc2",
                        "isContract": false,
                        "balanceInUsd": "2527710.75"
                    },
                    {
                        "address": "0xa1484c3aa22a66c62b77e0ae78e15258bd0cb711",
                        "isContract": true,
                        "balanceInUsd": "2512661.22"
                    },
                    {
                        "address": "0x8cdba7a500fd4d7b1b96d671373292f2fd49a320",
                        "isContract": false,
                        "balanceInUsd": "2360185.56"
                    },
                    {
                        "address": "0x79317fc0fb17bc0ce213a2b50f343e4d4c277704",
                        "isContract": false,
                        "balanceInUsd": "2162658.09"
                    },
                    {
                        "address": "0x0b6971e7d1edf1dfe4d501151d59a1f7ee30651e",
                        "isContract": false,
                        "balanceInUsd": "1489438.11"
                    }
                ],
                "liquidityLockedDetails": {
                    "upcomingUnlockDetails": [
                        {
                            "balance": "0.000000000202427098",
                            "percent": 0,
                            "time": "2023-04-25T15:05:06.000Z",
                            "risk": {
                                "riskRating": 7,
                                "riskStatus": "Unavailable"
                            },
                            "tag": "Team Finance"
                        },
                        {
                            "balance": "0.83876312459404429",
                            "percent": 0,
                            "time": "2021-08-21T09:50:54.000Z",
                            "risk": {
                                "riskRating": 7,
                                "riskStatus": "Unavailable"
                            },
                            "tag": "Unicrypt"
                        }
                    ]
                },
                "percentDistributed": {
                    "topThree": {
                        "percent": 48.84,
                        "balanceInUsd": "62046379.49",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "topTen": {
                        "percent": 67.4,
                        "balanceInUsd": "85626413.08",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "owner": {
                        "percent": 0,
                        "balanceInUsd": "0.00",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "creator": {
                        "percent": 0,
                        "balanceInUsd": "0.00",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "burnt": {
                        "percent": 0,
                        "balanceInUsd": "0.02",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "locked": {
                        "percent": 0,
                        "balanceInUsd": "968.42",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    },
                    "other": {
                        "percent": 100,
                        "balanceInUsd": "127039959.65",
                        "risk": {
                            "riskRating": 7,
                            "riskStatus": "Unavailable"
                        }
                    }
                }
            }
</code></pre></td><td>Object</td></tr><tr><td>pairByPairInformation</td><td><p>Returns details about all tracked trading pairs of the token including the Dex, taxes, key LP holders, and token distribution, etc<br></p><pre class="language-json"><code class="lang-json">
[
                {
                    "dexName": "UniswapV2",
                    "numberOfPairs": 276930,
                    "totalLpSupplyInUsd": "127040928.09",
                    "pairsInformation": [
                        {
                            "token0Address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
                            "token1Address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                            "lpTotalSupply": "0.458153979133773165",
                            "lpSupplyInUsd": "97138198.54",
                            "token0Symbol": "USDC",
                            "token1Symbol": "WETH",
                            "token0Balance": "48638543.489314",
                            "token1Balance": "21896.882196968806564267",
                            "pairAddress": "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc",
                            "lpHolders": [
                                {
                                    "address": "0x18498ab9931c671742c4ff0ca292c1876cab7384",
                                    "isContract": false,
                                    "balance": "0.140949565972867597",
                                    "balanceInUsd": "29884247.54"
                                },
                                {
                                    "address": "0x1a68f74f59405dcdb5dc994adab6c1708a3da898",
                                    "isContract": false,
                                    "balance": "0.091955506205427782",
                                    "balanceInUsd": "19496485.08"
                                },
                                {
                                    "address": "0xb94d77f829dddc059f0e5a30140116801f3ee47a",
                                    "isContract": false,
                                    "balance": "0.059737740661974178",
                                    "balanceInUsd": "12665646.87"
                                },
                                {
                                    "address": "0xcc4ea98876f3ee733712ac64137c34e637fc2dae",
                                    "isContract": false,
                                    "balance": "0.043655136519431045",
                                    "balanceInUsd": "9255799.39"
                                },
                                {
                                    "address": "0xd7a51ff8357c210d11499e251b2849d1bb35cbc2",
                                    "isContract": false,
                                    "balance": "0.01192199107483347",
                                    "balanceInUsd": "2527710.75"
                                },
                                {
                                    "address": "0x8cdba7a500fd4d7b1b96d671373292f2fd49a320",
                                    "isContract": false,
                                    "balance": "0.011131855672935247",
                                    "balanceInUsd": "2360185.56"
                                },
                                {
                                    "address": "0x0b6971e7d1edf1dfe4d501151d59a1f7ee30651e",
                                    "isContract": false,
                                    "balance": "0.007024960378978118",
                                    "balanceInUsd": "1489438.11"
                                },
                                {
                                    "address": "0x91552419b2e1b480b91ed10e617921af06f0896a",
                                    "isContract": false,
                                    "balance": "0.006020165875598571",
                                    "balanceInUsd": "1276400.72"
                                },
                                {
                                    "address": "0xb6bb7d7a3e15a14f03bb44568e0f9358dca68fd3",
                                    "isContract": false,
                                    "balance": "0.005418445318911238",
                                    "balanceInUsd": "1148823.41"
                                },
                                {
                                    "address": "0xb76dfb4ebf7d8c4421a416b5bd14912b51a02e46",
                                    "isContract": false,
                                    "balance": "0.004171689502775549",
                                    "balanceInUsd": "884485.18"
                                }
                            ]
                        },
                        {
                            "token0Address": "0x6b175474e89094c44da98b954eedeac495271d0f",
                            "token1Address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                            "lpTotalSupply": "70969.979230523415560299",
                            "lpSupplyInUsd": "12423425.46",
                            "token0Symbol": "DAI",
                            "token1Symbol": "WETH",
                            "token0Balance": "6222255.659031666431721058",
                            "token1Balance": "2802.098065617817707287",
                            "pairAddress": "0xa478c2975ab1ea89e8196811f51a7b7ade33eb11",
                            "lpHolders": [
                                {
                                    "address": "0xa1484c3aa22a66c62b77e0ae78e15258bd0cb711",
                                    "isContract": true,
                                    "balance": "14353.812097964921376887",
                                    "balanceInUsd": "2512661.22"
                                },
                                {
                                    "address": "0x79317fc0fb17bc0ce213a2b50f343e4d4c277704",
                                    "isContract": false,
                                    "balance": "12354.386511005215008564",
                                    "balanceInUsd": "2162658.09"
                                },
                                {
                                    "address": "0xece09032ef138573714beec20aacdd10f76b2b8a",
                                    "isContract": false,
                                    "balance": "8114.358661506400976916",
                                    "balanceInUsd": "1420433.42"
                                },
                                {
                                    "address": "0x796024bee5efbcf34346ec9fa83d41234fa07ba9",
                                    "isContract": false,
                                    "balance": "7798.782606933575068394",
                                    "balanceInUsd": "1365191.25"
                                },
                                {
                                    "address": "0xbe185b216fa76580befecec0d87425321e5dfcfa",
                                    "isContract": false,
                                    "balance": "6549.557419946049403651",
                                    "balanceInUsd": "1146512.08"
                                },
                                {
                                    "address": "0x15e892ad1098e1bc29ed1be0cce73b87bcdf4f79",
                                    "isContract": false,
                                    "balance": "1590.632795361253971655",
                                    "balanceInUsd": "278443.20"
                                },
                                {
                                    "address": "0xf85c64efd8ebd212278197b876261dcfdc4068c0",
                                    "isContract": false,
                                    "balance": "1542.416055749084289119",
                                    "balanceInUsd": "270002.77"
                                },
                                {
                                    "address": "0x1663b6e9d4540c6aa95988cf3b86be7da74b2ae4",
                                    "isContract": false,
                                    "balance": "1492",
                                    "balanceInUsd": "261177.35"
                                },
                                {
                                    "address": "0x78f8ae58d07ecde2286d0f3c316eaaf4a854a2e9",
                                    "isContract": true,
                                    "balance": "1037.064890893071964119",
                                    "balanceInUsd": "181540.12"
                                },
                                {
                                    "address": "0xa99ad2247e2b5eec38fef05a313829ffe24ef18b",
                                    "isContract": false,
                                    "balance": "964.889246611858805406",
                                    "balanceInUsd": "168905.64"
                                }
                            ]
                        },
                        {
                            "token0Address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
                            "token1Address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                            "lpTotalSupply": "0.003705369459791493",
                            "lpSupplyInUsd": "9039705.73",
                            "token0Symbol": "WBTC",
                            "token1Symbol": "WETH",
                            "token0Balance": "107.35998132",
                            "token1Balance": "2011.774337552282376065",
                            "pairAddress": "0xbb2b8038a1640196fbe3e38816f3e67cba72d940",
                            "lpHolders": [
                                {
                                    "address": "0x4ef449b2a96d0f91fcd4aad5d3f8febcdf604fcd",
                                    "isContract": false,
                                    "balance": "0.000377366798098704",
                                    "balanceInUsd": "920632.84"
                                },
                                {
                                    "address": "0x01181be6c5aaafa05def979100ef73bb8c0e53f0",
                                    "isContract": false,
                                    "balance": "0.000285621672214982",
                                    "balanceInUsd": "696809.29"
                                },
                                {
                                    "address": "0x9a73eea8e4883b5f1efceb40d0d3c1189c341a25",
                                    "isContract": false,
                                    "balance": "0.000245544694888949",
                                    "balanceInUsd": "599036.56"
                                },
                                {
                                    "address": "0xd0246f0cd4145cecc4bdc0321a39a818ff6fc936",
                                    "isContract": false,
                                    "balance": "0.000188710871235633",
                                    "balanceInUsd": "460383.44"
                                },
                                {
                                    "address": "0xa7ec68eaf58dd8d745775dc5d77d5afc9f60dc41",
                                    "isContract": false,
                                    "balance": "0.000143995507368458",
                                    "balanceInUsd": "351294.80"
                                },
                                {
                                    "address": "0x6866d1ea1cc15e16ff9fa411234c1995664dd866",
                                    "isContract": false,
                                    "balance": "0.000098153783117234",
                                    "balanceInUsd": "239458.26"
                                },
                                {
                                    "address": "0x6badeb7ae1a66964f049ad10c328c9752eaac30a",
                                    "isContract": false,
                                    "balance": "0.000074698589699108",
                                    "balanceInUsd": "182236.42"
                                },
                                {
                                    "address": "0x9af7698e4cd38418d75296815117f2cc67cdc41b",
                                    "isContract": false,
                                    "balance": "0.000073117121426971",
                                    "balanceInUsd": "178378.23"
                                },
                                {
                                    "address": "0x162c1a86fe3d277ae1392f96da63fc7974da3ef0",
                                    "isContract": false,
                                    "balance": "0.000072910033590393",
                                    "balanceInUsd": "177873.02"
                                },
                                {
                                    "address": "0x379ec386676d92722a7e7273b98821d98be2af5e",
                                    "isContract": false,
                                    "balance": "0.000063231874301193",
                                    "balanceInUsd": "154261.95"
                                }
                            ]
                        },
                        {
                            "token0Address": "0x1f9840a85d5af5bf1d1762f925bdaddc4201f984",
                            "token1Address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
                            "lpTotalSupply": "7313.376448541749375582",
                            "lpSupplyInUsd": "8439598.36",
                            "token0Symbol": "UNI",
                            "token1Symbol": "WETH",
                            "token0Balance": "315660.052597919480278089",
                            "token1Balance": "927.699618791065785717",
                            "pairAddress": "0xd3d2e2692501a5c9ca623199d38826e513033a17",
                            "lpHolders": [
                                {
                                    "address": "0x01181be6c5aaafa05def979100ef73bb8c0e53f0",
                                    "isContract": false,
                                    "balance": "681.456506614010305739",
                                    "balanceInUsd": "786397.26"
                                },
                                {
                                    "address": "0x069d2a5d415894b74c80650a5d67f09e28282b9d",
                                    "isContract": false,
                                    "balance": "487.397011951294148078",
                                    "balanceInUsd": "562453.62"
                                },
                                {
                                    "address": "0xda4345eeeced846609a7a2a66310f0fd4222ab80",
                                    "isContract": false,
                                    "balance": "303.602827102349227039",
                                    "balanceInUsd": "350356.08"
                                },
                                {
                                    "address": "0x2903877ab5529182f0f6a4b6fb7d3c05ac82eea8",
                                    "isContract": true,
                                    "balance": "230.342100870885421725",
                                    "balanceInUsd": "265813.59"
                                },
                                {
                                    "address": "0xb76dfb4ebf7d8c4421a416b5bd14912b51a02e46",
                                    "isContract": false,
                                    "balance": "218.366052173136634671",
                                    "balanceInUsd": "251993.29"
                                },
                                {
                                    "address": "0x76e2e2d4d655b83545d4c50d9521f5bc63bc5329",
                                    "isContract": false,
                                    "balance": "145.68848177438155836",
                                    "balanceInUsd": "168123.75"
                                },
                                {
                                    "address": "0x06799a1e4792001aa9114f0012b9650ca28059a3",
                                    "isContract": true,
                                    "balance": "137.201237640273829291",
                                    "balanceInUsd": "158329.51"
                                },
                                {
                                    "address": "0x498efb1bd2b816a60301ab258e59ed5399efe338",
                                    "isContract": false,
                                    "balance": "131.68988699822846208",
                                    "balanceInUsd": "151969.44"
                                },
                                {
                                    "address": "0x0eacc70869f1f6497fd9fbcf16ea5aa01e8cb390",
                                    "isContract": false,
                                    "balance": "100.002782769248277506",
                                    "balanceInUsd": "115402.69"
                                },
                                {
                                    "address": "0x02e020168269cbaa4aa4d9421f0194db6ab7d22b",
                                    "isContract": false,
                                    "balance": "83.819201645782040371",
                                    "balanceInUsd": "96726.92"
                                }
                            ]
                        }
                    ]
                }
            ]
</code></pre><p></p></td><td>Array</td></tr></tbody></table>

### codeChecks

#### ownershipChecks

<table><thead><tr><th width="216">Field</th><th width="526.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>ownerChangeBalance</td><td><p>Returns information about if the token's owner address has the ability to alter the balances of token holders.</p><ol><li>Description - Whether balances can be adjusted or not.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ol><pre class="language-json"><code class="lang-json">{
    "description": "Owner can adjust holder balances",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "1",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>isMintable</td><td><p>Returns Information on whether the token's total supply is not fixed and the owner is permitted to mint more tokens.</p><ul><li>Description - Whether token can be minted or not.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "Maximum token supply is modifiable",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "1",
    "comment": ""

</code></pre></td><td>Object</td></tr><tr><td>selfDestruct</td><td><p>Returns Information on whether the token has a self-destruct functionality which the owner can call.</p><ul><li>Description - Whether token can be delf destructed or not.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
"description": "No self-destruct mechanism"",
"risk": {
"riskRating": 0
"riskStatus":"Good To Have"
},
"status": "0",
"comment": ""
} </code></pre></td><td>Object</td></tr><tr><td>transferPausable</td><td><p>Returns Information on whether the token's transfer can be paused by the owner.</p><ul><li>Description - Whether token can be self destructed or not.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><p></p><p>eg:</p><pre class="language-json"><code class="lang-json">{
"description": "Owner can pause token transfers",
"risk": {
"riskRating": 0
"riskStatus":"Good To Have"
},
"status": "1",
"comment": ""
} </code></pre></td><td>Object</td></tr><tr><td>slippageModifiable</td><td><p>Returns information on whether the token has modifiable tax or not. This refers to the owner having the ability to change the buy or sell tax of the token.</p><ul><li>Description - Whether token has a modifiable tax or not</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><p>eg: </p><pre class="language-json"><code class="lang-json">{
"description": "Buy/Sell tax rates are fixed",
"risk": {
"riskRating": 0
"riskStatus":"Good To Have"
},
"status": "0",
"comment": ""
} </code></pre></td><td>Object</td></tr><tr><td>personalSlippageModifiable</td><td><p>Returns information on whether the owner has the ability to modify buy and sell tax for select wallet addresses.</p><ul><li>Description - Whether token has modifiable tax for select addresses or not</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><p>eg: </p><pre class="language-json"><code class="lang-json">{
"description": "Slippage rate is uniform for all",
"risk": {
"riskRating": 0
"riskStatus":"Good To Have"
},
"status": "0",
"comment": ""
} </code></pre></td><td>Object</td></tr></tbody></table>

#### otherChecks

<table><thead><tr><th width="226">Field</th><th width="524.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>externalCall</td><td><p>Returns information on if the token's contract is making calls to external contracts. This could lead to risks if we don't have information about the contracts this token is calling.</p><ul><li>Description - Whether token calls any external contract.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "Engages external contracts",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "1",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>isProxy</td><td><p>Returns information on if the token's contract is a proxy contract. Implementation of proxy contracts allows for upgradability but also could be misused.</p><ul><li>Description - Whether token calls is a proxy contract.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "No proxy contract usage",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "0",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>tradingCooldown</td><td><p>Returns information on if the token's contract can affect how often users can trade the token. </p><ul><li>Description - Whether trade frequency is restricted.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "Trade frequency is not restricted",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "0",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>cannotBuy</td><td><p></p><p>Returns information on if the token is available in a DEX to buy </p><ul><li>Description - Whether token is listed on tracked DEXs</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "Token purchasable from open market",
    "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "0",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>cannotSellAll</td><td><p>Returns information on if the token has any limit of number of tokens that can be sold in one trade.</p><ul><li>Description - Whether entire token balance can be sold in a trade</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><p></p><p>eg:</p><pre class="language-json"><code class="lang-json">{
    "description": "No token sale limits",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "0",
    "comment": ""
}
</code></pre></td><td>Object</td></tr><tr><td>isAntiWhale</td><td><p>Returns information on if the token has any anti-whale measures in it.</p><ul><li>Description - Whether token has anti-whale measures put in it.</li><li>Risk associated with this item. 0 denotes the least risk. 6 denotes the highest risk. </li><li>Status "1" - true, "0" - false, "" - unknown </li><li>Comment (if any) on why this is present in the token, if known.</li></ul><pre class="language-json"><code class="lang-json">{
    "description": "No Anti-Whale measures",
     "risk": {
               "riskRating": 0
               "riskStatus":"Good To Have"
               },
    "status": "0",
    "comment": ""
}
</code></pre></td><td>Object</td></tr></tbody></table>

### honeypotDetails

<table><thead><tr><th width="179">Field</th><th width="643.3333333333333">Description</th><th>Data Type</th></tr></thead><tbody><tr><td>honeypotPairs</td><td><p></p><p>Returns information about potential honeypot traps identified in specific Dex pairs.</p><p></p><ol><li>Pair Address - The address of the token pair on the Dex.</li><li>Dex Name - The name of the decentralized exchange.</li><li>Honeypot Reason - The reason or evidence which suggests that the token pair might be a honeypot.</li></ol><pre class="language-json" data-overflow="wrap" data-full-width="false"><code class="lang-json">[
    {
        "pairAddress": "0x05d05e8666608b8bf65b1ac0f544ba40831ce58b",
        "dex": "PancakeV2",
        "honeypotReason": "Transfer of token is failing. These    Results are being simulated in GREEN / WBNB pair of PancakeV2"
    }
]

</code></pre></td><td>Array</td></tr><tr><td>honeypotFound</td><td><p></p><p>Returns information about the results of honeypot simulations in specific pools.</p><ol><li>Pools Simulated: The number of pools that were subjected to honeypot simulation tests.</li><li>Total Pools: The total number of pools available for the specific token or Dex.</li><li>Honeypot Pools: The number of pools identified as potential honeypots during the simulation.</li></ol><pre class="language-json"><code class="lang-json">\[
{
"poolsSimulated": 1,
"totalPools": 1,
"honeypotPools": 1
}
]\ </code></pre></td><td>Object</td></tr><tr><td>isTokenHoneypot</td><td><p>It describes whether a token is honeypot or not.       </p><p></p><p>Note: This can be 0 - false, 1 - true, 2 - unknown  </p></td><td>Number</td></tr></tbody></table>
