メインコンテンツへスキップ
GET
/
v2
/
token
/
{chain}
/
{tokenAddress}
/
security
トークン - セキュリティ
curl --request GET \
  --url https://api.chainstream.io/v2/token/{chain}/{tokenAddress}/security \
  --header 'Authorization: Bearer <token>'
{
  "address": "6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN",
  "chain": "sol",
  "devTokenBurnAmount": "<string>",
  "devTokenBurnRatio": "<string>",
  "goplus": {
    "available": true,
    "buyTax": "<string>",
    "chainSupported": true,
    "holderCount": "<string>",
    "isBlacklisted": true,
    "isFreezable": true,
    "isHoneypot": true,
    "isMintable": true,
    "isOpenSource": true,
    "isProxy": true,
    "isRenounced": true,
    "lastRefreshedAt": "2026-05-13T10:00:00.000Z",
    "lpHolderCount": "<string>",
    "ownerAddress": "<string>",
    "raw": "<unknown>",
    "sellTax": "<string>",
    "totalSupply": "<string>"
  },
  "honeypot": {
    "available": true,
    "averageTax": "<string>",
    "buyTax": "<string>",
    "canNotSell": 123,
    "canSell": 123,
    "chainSupported": true,
    "highTax": "<string>",
    "honeypotResult": "<string>",
    "isHoneypot": true,
    "isOpenSource": true,
    "isRenounced": true,
    "lastRefreshedAt": "2026-05-13T10:00:00.000Z",
    "raw": "<unknown>",
    "sellTax": "<string>"
  },
  "isFreezable": true,
  "isMintable": true,
  "isShowAlert": true,
  "lockInfo": {
    "isLocked": true,
    "leftLockPercent": "<string>",
    "lockDetail": "<string>",
    "lockPercent": "<string>",
    "lockTags": [
      "<string>"
    ]
  },
  "privileges": [
    {
      "address": "<string>",
      "isRenounced": true,
      "name": "<string>"
    }
  ],
  "serialized": {
    "available": true,
    "chainSupported": true,
    "isOpenSource": true,
    "isProxy": true,
    "isRenounced": true,
    "isSafe": true,
    "lastRefreshedAt": "2026-05-13T10:00:00.000Z",
    "launchpadName": "<string>",
    "ownerAddress": "<string>",
    "raw": "<unknown>",
    "sourceType": "<string>",
    "vulnCount": 123,
    "vulnCriticalCount": 123,
    "vulnMitigatedCount": 123
  },
  "sourcesAvailable": [
    "goplus"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.chainstream.io/llms.txt

Use this file to discover all available pages before exploring further.

承認

Authorization
string
header
必須

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

パスパラメータ

chain
enum<string>
必須

サポートされているネットワークに記載されているチェーン名 Supported blockchain chains

利用可能なオプション:
sol,
eth,
bsc
tokenAddress
string
必須

トークンのアドレス

レスポンス

200 - application/json

トークンセキュリティデータ

address
string
必須

Token contract address

:

"6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN"

chain
string
必須

Chain name

:

"sol"

devTokenBurnAmount
string | null

ENTITY.TOKEN_SECURITY.DEV_TOKEN_BURN_AMOUNT

devTokenBurnRatio
string | null

ENTITY.TOKEN_SECURITY.DEV_TOKEN_BURN_RATIO

goplus
object

GoPlus security data

honeypot
object

Honeypot.is security data

isFreezable
boolean | null

Whether the token accounts can be frozen

isMintable
boolean | null

Whether the token is mintable

isShowAlert
boolean | null

ENTITY.TOKEN_SECURITY.IS_SHOW_ALERT

lockInfo
object

ENTITY.TOKEN_SECURITY.LOCK_INFO

privileges
object[] | null

ENTITY.TOKEN_SECURITY.PRIVILEGES

serialized
object

Serialized Audit security data

sourcesAvailable
string[] | null

ENTITY.TOKEN_SECURITY.SOURCES_AVAILABLE

:
["goplus"]