> ## 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 /ko/api-reference/openapi-data-ko.yaml GET /v2/token/{chain}/dev/{devAddress}/tokens
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}/dev/{devAddress}/tokens:
    get:
      tags:
        - Token
      summary: 토큰 - 개발자 토큰 조회
      description: 특정 개발자 주소가 생성한 모든 토큰 조회
      operationId: get.dev.tokens
      parameters:
        - name: chain
          in: path
          description: 지원되는 네트워크에 나열된 체인 이름
          required: true
          schema:
            $ref: '#/components/schemas/ChainSymbol'
          example: sol
        - name: devAddress
          in: path
          description: 사용자 주소
          required: true
          schema:
            type: string
          example: 3NUHqNG2Big2WxbYnaBzSNmxwE4NrxgckJuoiyGxu3Am
        - name: sortBy
          in: query
          description: >-
            Sort field: market_cap, fdv, holders, created_at, volume_24h,
            price_change_24h, trades_24h
          required: false
          schema:
            type: string
          example: market_cap
        - name: order
          in: query
          description: 'Sort order: asc or desc (default desc)'
          required: false
          schema:
            type: string
          example: desc
        - name: search
          in: query
          description: Text search in token name / symbol (case-insensitive)
          required: false
          schema:
            type: string
          example: dog
        - name: minMarketCap
          in: query
          description: Minimum market cap in USD
          required: false
          schema:
            type: string
          example: '1000'
        - name: maxMarketCap
          in: query
          description: Maximum market cap in USD
          required: false
          schema:
            type: string
          example: '1000000'
        - name: createdAfter
          in: query
          description: Only tokens created after this timestamp (ms)
          required: false
          schema:
            type: string
          example: '1717200000000'
        - name: createdBefore
          in: query
          description: Only tokens created before this timestamp (ms)
          required: false
          schema:
            type: string
          example: '1720000000000'
        - name: minHolders
          in: query
          description: Minimum holder count
          required: false
          schema:
            type: string
          example: '100'
        - name: limit
          in: query
          description: Items per page (1–100)
          required: false
          schema:
            type: integer
            format: int64
            default: 20
          example: 20
        - name: page
          in: query
          description: Page number (1-based)
          required: false
          schema:
            type: integer
            format: int64
            default: 1
          example: 1
      responses:
        '200':
          description: 개발자 토큰 조회
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageResponse_DevToken'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    PageResponse_DevToken:
      type: object
      description: Generic pagination response
      required:
        - data
      properties:
        data:
          type: array
          items:
            type: object
            description: >-
              Token info returned by `get_dev_tokens` — mirrors TS
              `DevTokenDTO`.
            required:
              - address
              - metadata
              - marketData
              - stats
            properties:
              address:
                type: string
                description: Token address
                example: 6p6xgHyF7AeE6TZkSmFsko444wqoP15icUSqi2jfGiPN
              marketData:
                $ref: '#/components/schemas/TokenMarketData'
                description: Market data
              metadata:
                $ref: '#/components/schemas/TokenMetadata'
                description: Token metadata
              stats:
                $ref: '#/components/schemas/TokenStats'
                description: Trade statistics
          description: Page data
        endCursor:
          type:
            - string
            - 'null'
          description: Cursor for the end of current page
          example: eyJpZCI6ImVuZCJ9
        hasNext:
          type: boolean
          description: Whether there is a next page
          example: false
        hasPrev:
          type: boolean
          description: Whether there is a previous page
          example: false
        startCursor:
          type:
            - string
            - 'null'
          description: Cursor for the start of current page
          example: eyJpZCI6InN0YXJ0In0=
        total:
          type:
            - integer
            - 'null'
          format: int64
          description: >-
            Total number of items matching the query (not just the current
            page).

            When `None`, the caller should treat it as unknown
            (backward-compatible).
          example: 564094
    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'
    TokenMetadata:
      type: object
      description: Token metadata
      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: string
          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'
        extra:
          $ref: '#/components/schemas/TokenExtra'
          description: 확장 토큰 메타데이터
        firstTradeAt:
          type:
            - integer
            - 'null'
          format: int64
          description: 첫 거래 타임스탬프
          example: 1714857600000
        imageUrl:
          type:
            - string
            - 'null'
          description: 토큰 로고 이미지 URL
          example: >-
            https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v/logo.png
        metadataAddress:
          type:
            - string
            - 'null'
          description: 온체인 메타데이터 계정 주소
          example: metaqbxxUerdq28cj1RbAWkYQm3ybzjb6a8bt518x1s
        name:
          type: string
          description: 토큰 표시 이름
          example: USD Coin
        socialMedias:
          $ref: '#/components/schemas/TokenSocialMedias'
          description: 토큰 소셜 미디어 링크
        symbol:
          type: string
          description: 토큰 티커 심볼
          example: USDC
        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: 토큰 생성자 목록
        translations:
          $ref: '#/components/schemas/TokenTranslations'
          description: 이름/심볼 현지화 번역
        updatedAt:
          type:
            - string
            - 'null'
          description: 마지막 업데이트 타임스탬프
          example: '2026-02-09T08:05:12.345Z'
        uri:
          type:
            - string
            - 'null'
          description: 토큰 메타데이터 URI
          example: https://arweave.net/abc123
    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'
    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: 에디션 논스 값
          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: Mint 권한 주소
          example: B61ZzjjZskE9yur2CBe4H4NFS3XHdEZdatKNegC9smUV
        primarySaleHappened:
          type:
            - boolean
            - 'null'
          description: 1차 판매 완료 여부
          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
    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
    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
    TokenTranslations:
      type: object
      description: |-
        Token translations for multi-locale display (e.g. Chinese markets).
        Sourced from CoinGecko `/coins/{id}` localization or community data.
      properties:
        nameZhcn:
          type:
            - string
            - 'null'
        symbolZhcn:
          type:
            - string
            - 'null'
        transName:
          type:
            - string
            - 'null'
        transSymbol:
          type:
            - string
            - 'null'
    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

````