> ## 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.

# トークン - 類似

> 画像ハッシュまたは正規化名で指定トークンに類似したトークンを検索します



## OpenAPI

````yaml /jp/api-reference/openapi-data-jp.yaml GET /v2/token/{chain}/{tokenAddress}/similar
openapi: 3.1.0
info:
  title: Services API
  description: Services API
  contact:
    name: AI
    email: ai@sx.ai
  license:
    name: MIT
  version: '1.0'
servers:
  - url: https://api.chainstream.io
    description: Production
security:
  - bearer_auth: []
  - api_key_auth: []
tags:
  - name: Blockchain
    description: ブロックチェーン関連の操作
  - name: Token
    description: トークン関連の操作
  - name: Trade
    description: 取引関連の操作
  - name: Wallet
    description: ウォレット関連の操作
  - name: Dex
    description: DEX 関連の操作
  - name: Ranking
    description: ランキング関連の操作
  - name: DexPool
    description: DEX プール関連の操作
  - name: Watchlist
    description: ウォッチリスト関連の操作
  - name: KYT
    description: KYT 関連の操作
  - name: Webhook
    description: Webhook 関連の操作
  - name: RedPacket
    description: レッドパケット関連の操作
  - name: IPFS
    description: IPFS 関連の操作
  - name: DexScreener
    description: DexScreener 関連の操作
paths:
  /v2/token/{chain}/{tokenAddress}/similar:
    get:
      tags:
        - Token
      summary: トークン - 類似
      description: 画像ハッシュまたは正規化名で指定トークンに類似したトークンを検索します
      operationId: get.token.similar
      parameters:
        - name: chain
          in: path
          description: サポートされているネットワークに記載されているチェーン名
          required: true
          schema:
            $ref: '#/components/schemas/ChainSymbol'
          example: sol
        - name: tokenAddress
          in: path
          description: トークンのアドレス
          required: true
          schema:
            type: string
          example: 6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN
        - name: type
          in: query
          description: 類似タイプ：画像または名前
          required: false
          schema:
            $ref: '#/components/schemas/SimilarType'
        - name: limit
          in: query
          description: 最大結果数（1-100）
          required: false
          schema:
            type: integer
            format: int64
          example: '20'
      responses:
        '200':
          description: 類似トークンを取得
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Token'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    SimilarType:
      type: string
      enum:
        - image
        - name
    Token:
      type: object
      description: |-
        Token entity — mirrors TS `TokenDTO extends TokenMetadataDTO`.

        TS uses class inheritance to flatten metadata into the top level.
        Rust uses `#[serde(flatten)]` for the same effect.
      required:
        - address
        - chain
        - symbol
        - name
        - decimals
      properties:
        address:
          type: string
          description: トークンコントラクトアドレス
          example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
        chain:
          type: string
          description: ブロックチェーンネットワーク識別子
          example: sol
        coingeckoCoinId:
          type:
            - string
            - 'null'
          description: CoinGecko コイン識別子
          example: usd-coin
        decimals:
          type: integer
          format: int32
          description: 小数点以下の桁数
          example: 9
        description:
          type:
            - string
            - 'null'
          description: トークンの説明
          example: USDC is a stablecoin pegged to the US dollar
        devLastTokenCreatedAt:
          type:
            - string
            - 'null'
          description: 開発者の最後のトークン作成タイムスタンプ
          example: '2025-12-03T09:23:34.000Z'
        devTotalTokens:
          type:
            - string
            - 'null'
          description: 開発者が作成したトークンの総数
          example: '163'
        extension:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/TokenExtra'
              description: |-
                ENTITY.TOKEN.EXTENSION
                ENTITY.TOKEN.EXTENSION
        extra:
          $ref: '#/components/schemas/TokenExtra'
          description: 拡張トークンメタデータ
        imageUrl:
          type:
            - string
            - 'null'
          description: トークンロゴ画像 URL
          example: >-
            https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png
        market:
          type:
            - string
            - 'null'
          description: 取引市場識別子
          example: USDC-SOL
        marketData:
          $ref: '#/components/schemas/TokenMarketData'
          description: Market data
        metadataAddress:
          type:
            - string
            - 'null'
          description: オンチェーンメタデータアカウントアドレス
          example: metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s
        name:
          type: string
          description: トークンの表示名
          example: USD Coin
        score:
          type:
            - number
            - 'null'
          format: double
          description: Search relevance score from OpenSearch _score
        scoreBreakdown:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/ScoreBreakdown'
              description: >-
                Approximate factor-level score breakdown (debug /
                explainability)
        security:
          $ref: '#/components/schemas/TokenSecuritySummary'
          description: Security audit summary
        socialMedias:
          $ref: '#/components/schemas/TokenSocialMedias'
          description: トークンのソーシャルメディアリンク
        stats:
          $ref: '#/components/schemas/TokenStats'
          description: Token statistics
        symbol:
          type: string
          description: トークンのティッカーシンボル
          example: USDC
        tier:
          type:
            - integer
            - 'null'
          format: int32
          description: 'Search tier: 0 = VIP, 1 = verified, 2 = emerging, null = unverified'
        tokenCreatedAt:
          type:
            - integer
            - 'null'
          format: int64
          description: トークン作成タイムスタンプ（ミリ秒）
          example: 1710417600000
        tokenCreatedBlockHeight:
          type:
            - string
            - 'null'
          description: トークンが作成されたブロック高
          example: '220000000'
        tokenCreatedSlot:
          type:
            - string
            - 'null'
          description: トークンが作成されたスロット番号
          example: '230000000'
        tokenCreatedTxSignature:
          type:
            - string
            - 'null'
          description: トークン作成のトランザクション署名
          example: 5dJ1BxPiFT7w7aBdkxNy2jopGZnZoLwRwS8e9GkEXrVz...
        tokenCreators:
          type: array
          items:
            $ref: '#/components/schemas/TokenCreator'
          description: トークン作成者リスト
        uri:
          type:
            - string
            - 'null'
          description: トークンメタデータ URI
          example: https://arweave.net/abc123
        warningBadge:
          type:
            - string
            - 'null'
          description: 'Warning badge: "unverified", "potential_scam", "honeypot", or null'
    TokenExtra:
      type: object
      description: Token extra metadata
      properties:
        collectionAddress:
          type:
            - string
            - 'null'
          description: NFT コレクションアドレス
          example: ABCDE
        dexscreenerAd:
          type:
            - boolean
            - 'null'
          description: トークンにアクティブな DexScreener 広告があるか
        dexscreenerAdAt:
          type:
            - integer
            - 'null'
          format: int64
          description: DexScreener 広告のタイムスタンプ
        dexscreenerBannerUrl:
          type:
            - string
            - 'null'
          description: DexScreener banner image URL
        dexscreenerBoostAt:
          type:
            - integer
            - 'null'
          format: int64
          description: DexScreener ブーストのタイムスタンプ
        dexscreenerBoostFeeInUsd:
          type:
            - string
            - 'null'
          description: DexScreener ブースト費用（USD）
        dexscreenerTrendingBar:
          type:
            - boolean
            - 'null'
          description: トークンが DexScreener トレンドバーに表示されるか
        dexscreenerTrendingBarAt:
          type:
            - integer
            - 'null'
          format: int64
          description: DexScreener トレンドバー表示のタイムスタンプ
        dexscreenerUpdateLink:
          type:
            - boolean
            - 'null'
          description: トークンプロフィールのリンクが DexScreener で更新されたか
        dexscreenerUpdateLinkAt:
          type:
            - integer
            - 'null'
          format: int64
          description: DexScreener リンク更新のタイムスタンプ
        editionNonce:
          type:
            - integer
            - 'null'
          format: int64
          description: エディション nonce 値
          example: 1
        freezeAuthority:
          type:
            - string
            - 'null'
          description: フリーズ権限アドレス
          example: B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV
        fungible:
          type:
            - boolean
            - 'null'
          description: トークンが代替可能かどうか
          example: true
        isMutable:
          type:
            - boolean
            - 'null'
          description: メタデータが変更可能かどうか
          example: true
        isNative:
          type:
            - boolean
            - 'null'
          description: ネイティブトークン（例：SOL）かどうか
          example: false
        isVerifiedCollection:
          type:
            - boolean
            - 'null'
          description: コレクションが検証済みかどうか
          example: true
        isWrapped:
          type:
            - boolean
            - 'null'
          description: トークンがラップされているかどうか
          example: false
        key:
          type:
            - string
            - 'null'
          description: Metaplex アカウントキータイプ
          example: Mint
        launchFromProgramAddress:
          type:
            - string
            - 'null'
          description: ローンチプラットフォームのプログラムアドレス
          example: 6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P
        launchFromProtocolFamily:
          type:
            - string
            - 'null'
          description: ローンチプラットフォームのプロトコルファミリー
          example: pumpfun
        launchQuoteTokenAddress:
          type:
            - string
            - 'null'
          description: ローンチ時に使用された決済トークンのアドレス
        migratedAt:
          type:
            - integer
            - 'null'
          format: int64
          description: 移行タイムスタンプ（ミリ秒）
          example: 1714857600000
        migratedToPoolAddress:
          type:
            - string
            - 'null'
          description: 移行先プールアドレス
          example: 7AvUMqLBou5EAXzyhnizWmPU13u2VguJoBYdcX4bhJtQ
        migratedToProgramAddress:
          type:
            - string
            - 'null'
          description: 移行先プログラムアドレス
          example: pAMMBay6oceH9fJKBRHGP5D4bD4sWpmSwMn52FMfXEA
        migratedToProtocolFamily:
          type:
            - string
            - 'null'
          description: 移行先プロトコルファミリー
          example: Raydium
        mintAuthority:
          type:
            - string
            - 'null'
          description: ミント権限アドレス
          example: B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV
        primarySaleHappened:
          type:
            - boolean
            - 'null'
          description: プライマリセールが発生したかどうか
          example: false
        programAddress:
          type:
            - string
            - 'null'
          description: トークンプログラムアドレス
          example: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
        sellerFeeBasisPoints:
          type:
            - integer
            - 'null'
          format: int64
          description: 販売手数料（ベーシスポイント）
          example: 100
        tokenStandard:
          type:
            - string
            - 'null'
          description: トークン規格（例：Fungible）
          example: Fungible
        updateAuthority:
          type:
            - string
            - 'null'
          description: 更新権限アドレス
          example: B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV
    TokenMarketData:
      type: object
      description: Token market data
      properties:
        athMarketCapInUsd:
          type:
            - string
            - 'null'
          description: |-
            ENTITY.TOKEN_MARKET_DATA.ATH_MARKET_CAP_IN_USD
            All-time-high market cap in USD (max observed since token creation).
          example: '9500000.00'
        bluechipHoldingsRatio:
          type:
            - string
            - 'null'
          description: ブルーチップ保有量の総供給量に対する割合
          example: '0.05'
        bluechipTotalHolders:
          type:
            - string
            - 'null'
          description: ブルーチップウォレット保有者数
          example: '10'
        bluechipTotalHoldings:
          type:
            - string
            - 'null'
          description: ブルーチップウォレットの合計保有量
          example: '50000'
        bundleHoldingsRatio:
          type:
            - string
            - 'null'
          description: バンドル保有量の総供給量に対する割合
          example: '0.018'
        bundleTotalHolders:
          type:
            - string
            - 'null'
          description: バンドルウォレット保有者数
          example: '12'
        bundleTotalHoldings:
          type:
            - string
            - 'null'
          description: バンドルウォレットの合計保有量
          example: '18000'
        circulatingSupply:
          type:
            - string
            - 'null'
          description: トークンの流通供給量
          example: '900000'
        completionRatio:
          type:
            - string
            - 'null'
          description: ボンディングカーブの完了率
          example: '1.0'
        creatorsHoldingsRatio:
          type:
            - string
            - 'null'
          description: クリエイターウォレットの保有比率（総供給量に対する）
          example: '0.10'
        creatorsTotalHolders:
          type:
            - string
            - 'null'
          description: クリエイターウォレットの保有者数
          example: '1'
        creatorsTotalHoldings:
          type:
            - string
            - 'null'
          description: クリエイターウォレットの総保有量
          example: '100000000.00'
        devHoldingsRatio:
          type:
            - string
            - 'null'
          description: 開発者保有量の総供給量に対する割合
          example: '0.005'
        devTotalHolders:
          type:
            - string
            - 'null'
          description: 開発者ウォレット保有者数
          example: '3'
        devTotalHoldings:
          type:
            - string
            - 'null'
          description: 開発者ウォレットの合計保有量
          example: '5000'
        fdvInSol:
          type:
            - string
            - 'null'
          description: ネイティブトークン建ての完全希薄化時価総額
          example: '200000'
        fdvInUsd:
          type:
            - string
            - 'null'
          description: USD建ての完全希薄化時価総額
          example: '200000'
        freshHoldingsRatio:
          type:
            - string
            - 'null'
          description: 新規ウォレット保有量の総供給量に対する割合
          example: '0.01'
        freshTotalHolders:
          type:
            - string
            - 'null'
          description: 新規ウォレット保有者数
          example: '30'
        freshTotalHoldings:
          type:
            - string
            - 'null'
          description: 新規ウォレットの合計保有量
          example: '10000'
        holders:
          type:
            - string
            - 'null'
          description: トークン保有者の総数
          example: '1000'
        insiderHoldingsRatio:
          type:
            - string
            - 'null'
          description: インサイダー保有量の総供給量に対する割合
          example: '0.02'
        insiderTotalHolders:
          type:
            - string
            - 'null'
          description: インサイダーウォレット保有者数
          example: '5'
        insiderTotalHoldings:
          type:
            - string
            - 'null'
          description: インサイダーウォレットの合計保有量
          example: '20000'
        kolHoldingsRatio:
          type:
            - string
            - 'null'
          description: KOL 保有量の総供給量に対する割合
          example: '0.03'
        kolTotalHolders:
          type:
            - string
            - 'null'
          description: KOL（キーオピニオンリーダー）保有者数
          example: '20'
        kolTotalHoldings:
          type:
            - string
            - 'null'
          description: KOL ウォレットの合計保有量
          example: '30000'
        marketCapInSol:
          type:
            - string
            - 'null'
          description: ネイティブトークン建ての時価総額
          example: '100000'
        marketCapInUsd:
          type:
            - string
            - 'null'
          description: USD建ての時価総額
          example: '100000'
        maxPoolTvlInSol:
          type:
            - string
            - 'null'
          description: ネイティブトークン建ての最大プール TVL
          example: '1000.45'
        maxPoolTvlInUsd:
          type:
            - string
            - 'null'
          description: USD建ての最大プール TVL
          example: '150000.00'
        maxSupply:
          type:
            - string
            - 'null'
          description: トークンの最大供給量
        phishingHoldingsRatio:
          type:
            - string
            - 'null'
          description: フィッシングウォレットの保有比率（総供給量に対する）
          example: '0.0005'
        phishingTotalHolders:
          type:
            - string
            - 'null'
          description: フィッシング判定された保有者数
          example: '2'
        phishingTotalHoldings:
          type:
            - string
            - 'null'
          description: フィッシング判定ウォレットの総保有量
          example: '50000.00'
        priceInNative:
          type:
            - string
            - 'null'
          description: チェーンのネイティブトークン建て価格
          example: '0.00000261383847574915906643405542'
        priceInSol:
          type:
            - string
            - 'null'
          description: ネイティブトークン建てのトークン価格
          example: '0.00000261383847574915906643405542'
        priceInUsd:
          type:
            - string
            - 'null'
          description: USD建てのトークン価格
          example: '0.00000261383847574915906643405542'
        proHoldingsRatio:
          type:
            - string
            - 'null'
          description: プロトレーダー保有量の総供給量に対する割合
          example: '0.04'
        proTotalHolders:
          type:
            - string
            - 'null'
          description: プロトレーダー保有者数
          example: '25'
        proTotalHoldings:
          type:
            - string
            - 'null'
          description: プロトレーダーの合計保有量
          example: '40000'
        ratHoldingsRatio:
          type:
            - string
            - 'null'
          description: ラットトレーダーウォレットの保有比率（総供給量に対する）
          example: '0.0012'
        ratTotalHolders:
          type:
            - string
            - 'null'
          description: ラットトレーダーの保有者数
          example: '5'
        ratTotalHoldings:
          type:
            - string
            - 'null'
          description: ラットトレーダーウォレットの総保有量
          example: '120000.00'
        sandwishHoldingsRatio:
          type:
            - string
            - 'null'
          description: サンドイッチ攻撃保有量の総供給量に対する割合
          example: '0.015'
        sandwishTotalHolders:
          type:
            - string
            - 'null'
          description: サンドイッチ攻撃ウォレット保有者数
          example: '8'
        sandwishTotalHoldings:
          type:
            - string
            - 'null'
          description: サンドイッチ攻撃ウォレットの合計保有量
          example: '15000'
        smartHoldingsRatio:
          type:
            - string
            - 'null'
          description: スマートマネーウォレットの保有比率（総供給量に対する）
          example: '0.03'
        smartTotalHolders:
          type:
            - string
            - 'null'
          description: スマートマネーの保有者数
          example: '30'
        smartTotalHoldings:
          type:
            - string
            - 'null'
          description: スマートマネーウォレットの総保有量
          example: '3000000.00'
        sniperHoldingsRatio:
          type:
            - string
            - 'null'
          description: スナイパー保有量の総供給量に対する割合
          example: '0.025'
        sniperTotalHolders:
          type:
            - string
            - 'null'
          description: スナイパーウォレット保有者数
          example: '15'
        sniperTotalHoldings:
          type:
            - string
            - 'null'
          description: スナイパーウォレットの合計保有量
          example: '25000'
        top100HoldingsRatio:
          type:
            - string
            - 'null'
          description: 上位100保有者の総供給量に対する割合
          example: '0.8'
        top100TotalHolders:
          type:
            - string
            - 'null'
          description: 上位 100 保有者数
          example: '100'
        top100TotalHoldings:
          type:
            - string
            - 'null'
          description: 上位100保有者の合計保有量
          example: '800000'
        top10HoldingsRatio:
          type:
            - string
            - 'null'
          description: 上位10保有者の総供給量に対する割合
          example: '0.5'
        top10TotalHolders:
          type:
            - string
            - 'null'
          description: 上位 10 保有者数
          example: '10'
        top10TotalHoldings:
          type:
            - string
            - 'null'
          description: 上位10保有者の合計保有量
          example: '500000'
        top50HoldingsRatio:
          type:
            - string
            - 'null'
          description: 上位50保有者の総供給量に対する割合
          example: '0.3'
        top50TotalHolders:
          type:
            - string
            - 'null'
          description: 上位 50 保有者数
          example: '50'
        top50TotalHoldings:
          type:
            - string
            - 'null'
          description: 上位50保有者の合計保有量
          example: '300000'
        totalSupply:
          type:
            - string
            - 'null'
          description: トークンの総供給量
          example: '1000000'
        totalTvlInSol:
          type:
            - string
            - 'null'
          description: ネイティブトークン建ての合計ロック総額
          example: '1000000.45'
        totalTvlInUsd:
          type:
            - string
            - 'null'
          description: USD建ての合計ロック総額
          example: '1000000.45'
    ScoreBreakdown:
      type: object
      description: >-
        Score breakdown for search result debugging / explainability.

        Computed in Rust post-query as an approximation of the OS Painless
        scoring.
      required:
        - liquidityScore
        - volumeScore
        - holdersScore
        - txCountScore
        - smartMoneyScore
        - ageScore
        - priceChangeScore
        - marketCapScore
        - symbolExactMatchBonus
        - tierBoost
        - safetyPenalty
        - holderConcentrationPenalty
        - finalScore
      properties:
        ageScore:
          type: number
          format: double
        finalScore:
          type: number
          format: double
        holderConcentrationPenalty:
          type: number
          format: double
        holdersScore:
          type: number
          format: double
        liquidityScore:
          type: number
          format: double
        marketCapScore:
          type: number
          format: double
        priceChangeScore:
          type: number
          format: double
        safetyPenalty:
          type: number
          format: double
        smartMoneyScore:
          type: number
          format: double
        symbolExactMatchBonus:
          type: number
          format: double
        tierBoost:
          type: number
          format: double
        txCountScore:
          type: number
          format: double
        volumeScore:
          type: number
          format: double
    TokenSecuritySummary:
      type: object
      properties:
        buyTax:
          type:
            - string
            - 'null'
          description: Buy tax rate
        holderCount:
          type:
            - string
            - 'null'
          description: Number of token holders
        isBlacklisted:
          type:
            - boolean
            - 'null'
          description: Whether the token is blacklisted
        isFreezable:
          type:
            - boolean
            - 'null'
          description: Whether the token is freezable
        isHoneypot:
          type:
            - boolean
            - 'null'
          description: Whether the token is a honeypot scam
        isMintable:
          type:
            - boolean
            - 'null'
          description: Whether the token is mintable
        isOpenSource:
          type:
            - boolean
            - 'null'
          description: Whether the contract is open source
        isProxy:
          type:
            - boolean
            - 'null'
          description: Whether the contract is a proxy
        isRenounced:
          type:
            - boolean
            - 'null'
          description: Whether contract ownership is renounced
        isShowAlert:
          type:
            - boolean
            - 'null'
          description: Whether to show a security alert
        lpHolderCount:
          type:
            - string
            - 'null'
          description: Number of liquidity pool holders
        ownerAddress:
          type:
            - string
            - 'null'
          description: Token owner address
        sellTax:
          type:
            - string
            - 'null'
          description: Sell tax rate
        sourcesAvailable:
          type:
            - array
            - 'null'
          items:
            type: string
          description: Available security data sources
          example:
            - goplus
    TokenSocialMedias:
      type: object
      description: Token social media links
      properties:
        bitbucket:
          type:
            - string
            - 'null'
          description: Bitbucket リポジトリ URL
          example: https://bitbucket.org/circle
        discord:
          type:
            - string
            - 'null'
          description: Discord サーバー URL
          example: https://discord.gg/circle
        facebook:
          type:
            - string
            - 'null'
          description: Facebook ページ URL
          example: https://facebook.com/circle
        farcaster:
          type:
            - string
            - 'null'
          description: Farcaster ハンドルまたは URL
          example: https://warpcast.com/vitalik
        github:
          type:
            - string
            - 'null'
          description: GitHub リポジトリ URL
          example: https://github.com/circle
        instagram:
          type:
            - string
            - 'null'
          description: Instagram ハンドル
          example: '@circle'
        linkedin:
          type:
            - string
            - 'null'
          description: LinkedIn ページ URL
          example: https://linkedin.com/company/circle
        medium:
          type:
            - string
            - 'null'
          description: Medium ブログ URL
          example: https://medium.com/@circle
        reddit:
          type:
            - string
            - 'null'
          description: Reddit コミュニティ URL
          example: https://reddit.com/r/circle
        telegram:
          type:
            - string
            - 'null'
          description: Telegram グループ URL
          example: https://t.me/circle
        tiktok:
          type:
            - string
            - 'null'
          description: TikTok ハンドル
          example: '@circle'
        twitter:
          type:
            - string
            - 'null'
          description: Twitter ハンドルまたは URL
          example: '@circle'
        website:
          type:
            - string
            - 'null'
          description: 公式ウェブサイト URL
          example: https://www.circle.com
        youtube:
          type:
            - string
            - 'null'
          description: YouTube チャンネル URL
          example: https://youtube.com/@circle
    TokenStats:
      type: object
      description: Token statistics with nested time period data
      required:
        - address
        - periods
      properties:
        address:
          type: string
          description: トークンコントラクトアドレス
          example: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
        periods:
          type: object
          description: >-
            Trade statistics grouped by time period (1m, 5m, 15m, 30m, 1h, 4h,
            6h, 24h).

            Each period contains full OHLCV data, trade counts, and
            previous-period comparisons.

            See `TokenTradeStatPeriod` schema for all fields.
          additionalProperties:
            $ref: '#/components/schemas/TokenTradeStatPeriod'
          propertyNames:
            type: string
          example:
            6h:
              buyVolumeInUsd: '12000.00'
              buyers: '120'
              buys: '420'
              closeInUsd: '0.15600000'
              currentLiquidityInUsd: '250000.00'
              highInUsd: '0.15900000'
              lowInUsd: '0.15100000'
              openInUsd: '0.15200000'
              priceChangeRatioInUsd: '0.02631579'
              sellVolumeInUsd: '9800.00'
              sellers: '95'
              sells: '360'
              totalVolumeInUsd: '21800.00'
              traders: '215'
              trades: '780'
    TokenCreator:
      type: object
      description: Token creator info
      properties:
        address:
          type:
            - string
            - 'null'
          description: 作成者のウォレットアドレス
          example: 5e2qRc1DNEXmyxP8qwPwJhRWjef7usLyi7v5xjqLr5G7
        isVerified:
          type:
            - boolean
            - 'null'
          description: 作成者が検証済みかどうか
          example: true
        share:
          type:
            - integer
            - 'null'
          format: int64
          description: 作成者の収益分配割合
          example: 100
    TokenTradeStatPeriod:
      type: object
      description: Single time window trade statistics period
      properties:
        averagePriceInNative:
          type: string
          description: ネイティブトークン建ての平均価格
          example: '0.00005100'
        averagePriceInUsd:
          type: string
          description: USD建ての平均価格
          example: '0.15300000'
        buySellRatio:
          type:
            - string
            - 'null'
          description: 買い対売りの比率
          example: '1.5510'
        buyVolume:
          type: string
          description: トークン数量での買い出来高
          example: '15000000.12345678'
        buyVolumeInNative:
          type: string
          description: ネイティブトークン建ての買い出来高
          example: '750.50'
        buyVolumeInUsd:
          type: string
          description: USD建ての買い出来高
          example: '45000.00'
        buyers:
          type: string
          description: ユニーク買い手数
          example: '320'
        buys:
          type: string
          description: 買い取引数
          example: '1520'
        closeInNative:
          type: string
          description: ネイティブトークン建ての終値
          example: '0.00005200'
        closeInUsd:
          type: string
          description: USD建ての終値
          example: '0.15600000'
        currentLiquidityInUsd:
          type: string
          description: USD建ての現在の流動性
          example: '250000.00'
        dappProgramCount:
          type: string
          description: DEX プログラム数
          example: '8'
        highInNative:
          type: string
          description: ネイティブトークン建ての高値
          example: '0.00005300'
        highInUsd:
          type: string
          description: USD建ての高値
          example: '0.15900000'
        liquidityChangeRatio:
          type:
            - string
            - 'null'
          description: 前期間比の流動性変動率
          example: '0.0417'
        lowInNative:
          type: string
          description: ネイティブトークン建ての安値
          example: '0.00005000'
        lowInUsd:
          type: string
          description: USD建ての安値
          example: '0.15000000'
        openInNative:
          type: string
          description: ネイティブトークン建ての始値
          example: '0.00005000'
        openInUsd:
          type: string
          description: USD建ての始値
          example: '0.15000000'
        poolCount:
          type: string
          description: 流動性プール数
          example: '12'
        prevBuyVolume:
          type: string
          description: 前期間のトークン数量での買い出来高
          example: '14000000.00'
        prevBuyVolumeInNative:
          type: string
          description: 前期間のネイティブトークン建て買い出来高
          example: '700.00'
        prevBuyVolumeInUsd:
          type: string
          description: 前期間の USD建て買い出来高
          example: '42000.00'
        prevBuyers:
          type: string
          description: 前期間のユニーク買い手数
          example: '300'
        prevBuys:
          type: string
          description: 前期間の買い回数
          example: '1400'
        prevCloseInNative:
          type: string
          description: 前期間のネイティブトークン建て終値
          example: '0.00005100'
        prevCloseInUsd:
          type: string
          description: 前期間の USD建て終値
          example: '0.15100000'
        prevDappProgramCount:
          type: string
          description: 前期間の DEX プログラム数
          example: '7'
        prevHighInNative:
          type: string
          description: 前期間のネイティブトークン建て高値
          example: '0.00005100'
        prevHighInUsd:
          type: string
          description: 前期間の USD建て高値
          example: '0.15200000'
        prevLiquidityInUsd:
          type: string
          description: 前期間の USD建て流動性
          example: '240000.00'
        prevLowInNative:
          type: string
          description: 前期間のネイティブトークン建て安値
          example: '0.00004800'
        prevLowInUsd:
          type: string
          description: 前期間の USD建て安値
          example: '0.14500000'
        prevOpenInNative:
          type: string
          description: 前期間のネイティブトークン建て始値
          example: '0.00004900'
        prevOpenInUsd:
          type: string
          description: 前期間の USD建て始値
          example: '0.14800000'
        prevPoolCount:
          type: string
          description: 前期間のプール数
          example: '10'
        prevSellVolume:
          type: string
          description: 前期間のトークン数量での売り出来高
          example: '11000000.00'
        prevSellVolumeInNative:
          type: string
          description: 前期間のネイティブトークン建て売り出来高
          example: '550.00'
        prevSellVolumeInUsd:
          type: string
          description: 前期間の USD建て売り出来高
          example: '33000.00'
        prevSellers:
          type: string
          description: 前期間のユニーク売り手数
          example: '200'
        prevSells:
          type: string
          description: 前期間の売り回数
          example: '900'
        prevTrades:
          type: string
          description: 前期間の総取引回数
          example: '2300'
        priceChangeRatioInUsd:
          type: string
          description: USD建ての価格変動率
          example: '0.04000000'
        sellVolume:
          type: string
          description: トークン数量での売り出来高
          example: '12000000.98765432'
        sellVolumeInNative:
          type: string
          description: ネイティブトークン建ての売り出来高
          example: '600.40'
        sellVolumeInUsd:
          type: string
          description: USD建ての売り出来高
          example: '36000.00'
        sellers:
          type: string
          description: ユニーク売り手数
          example: '210'
        sells:
          type: string
          description: 売り取引数
          example: '980'
        totalVolumeInNative:
          type: string
          description: ネイティブトークン建ての総取引出来高
          example: '1350.90'
        totalVolumeInUsd:
          type: string
          description: USD建ての総取引出来高
          example: '81000.00'
        traders:
          type: string
          description: ユニークトレーダー数
          example: '530'
        trades:
          type: string
          description: 総取引数
          example: '2500'
        updatedAt:
          type:
            - string
            - 'null'
          description: 最終更新タイムスタンプ
          example: '2026-02-09T08:05:12.345Z'
        volumeChangeRatio:
          type:
            - string
            - 'null'
          description: 前期間比の出来高変動率
          example: '0.25'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````