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

# CONTROLLER.DEXSCR.GET_TOKEN_INFO.SUMMARY

> 특정 토큰의 DexScreener 광고, 부스트, 링크 업데이트 정보를 조회합니다



## OpenAPI

````yaml /ko/api-reference/openapi-data-ko.yaml GET /v2/dexscr/{chain}/token/{tokenAddress}
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/dexscr/{chain}/token/{tokenAddress}:
    get:
      tags:
        - DexScreener
      summary: DexScreener - 토큰 정보
      description: 특정 토큰의 DexScreener 광고, 부스트, 링크 업데이트 정보를 조회합니다
      operationId: get.dexscr.token-info
      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: WCoRVxGcpiwE6EvtDjXHJq6Kcn4nWT9Ubt1PrJHNAzM
      responses:
        '200':
          description: 성공 응답
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DexscrTokenInfo'
components:
  schemas:
    ChainSymbol:
      type: string
      description: Supported blockchain chains
      enum:
        - sol
        - eth
        - bsc
    DexscrTokenInfo:
      type: object
      description: Per-token aggregated DexScreener information.
      required:
        - chain
        - tokenAddress
      properties:
        ad:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/DexscrAd'
              description: 이 토큰의 DexScreener 광고 데이터(있는 경우)
        boost:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/DexscrBoost'
              description: 이 토큰의 DexScreener 부스트 데이터(있는 경우)
        chain:
          type: string
          description: 블록체인 네트워크 식별자
          example: sol
        linkUpdate:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/DexscrLinkUpdate'
              description: 이 토큰의 DexScreener 링크 업데이트 데이터(있는 경우)
        tokenAddress:
          type: string
          description: 토큰 컨트랙트 주소
          example: WCoRVxGcpiwE6EvtDjXHJq6Kcn4nWT9Ubt1PrJHNAzM
    DexscrAd:
      type: object
      required:
        - chain
        - tokenAddress
      properties:
        adType:
          type:
            - string
            - 'null'
          description: '광고 유형(예: banner)'
        chain:
          type: string
          description: 블록체인 네트워크 식별자
          example: sol
        date:
          type:
            - string
            - 'null'
          description: 광고 시작일
        durationHours:
          type:
            - integer
            - 'null'
          format: int64
          description: 광고 기간(시간)
        impressions:
          type:
            - integer
            - 'null'
          format: int64
          description: 광고 총 노출 수
        tokenAddress:
          type: string
          description: 토큰 컨트랙트 주소
          example: So11111111111111111111111111111111111111112
        url:
          type:
            - string
            - 'null'
          description: DexScreener 토큰 페이지 URL
    DexscrBoost:
      type: object
      required:
        - chain
        - tokenAddress
        - totalAmount
      properties:
        amount:
          type:
            - number
            - 'null'
          format: double
          description: 현재 부스트 수량
        chain:
          type: string
          description: 블록체인 네트워크 식별자
          example: sol
        description:
          type:
            - string
            - 'null'
          description: 토큰 설명
        header:
          type:
            - string
            - 'null'
          description: 토큰 헤더 이미지 URL
        icon:
          type:
            - string
            - 'null'
          description: 토큰 아이콘 URL
        links:
          description: 토큰 소셜 링크(JSON 형식)
        openGraph:
          type:
            - string
            - 'null'
          description: 토큰 Open Graph 이미지 URL
        tokenAddress:
          type: string
          description: 토큰 컨트랙트 주소
          example: So11111111111111111111111111111111111111112
        totalAmount:
          type: number
          format: double
          description: 누적 부스트 지출 수량
          example: 500
        url:
          type:
            - string
            - 'null'
          description: DexScreener 토큰 페이지 URL
    DexscrLinkUpdate:
      type: object
      required:
        - chain
        - tokenAddress
      properties:
        chain:
          type: string
          description: 블록체인 네트워크 식별자
          example: sol
        description:
          type:
            - string
            - 'null'
          description: 토큰 설명
        header:
          type:
            - string
            - 'null'
          description: 토큰 헤더 이미지 URL
        icon:
          type:
            - string
            - 'null'
          description: 토큰 아이콘 URL
        links:
          description: 토큰 소셜 링크(JSON 형식)
        openGraph:
          type:
            - string
            - 'null'
          description: 토큰 Open Graph 이미지 URL
        tokenAddress:
          type: string
          description: 토큰 컨트랙트 주소
          example: So11111111111111111111111111111111111111112
        url:
          type:
            - string
            - 'null'
          description: DexScreener 토큰 페이지 URL
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    api_key_auth:
      type: apiKey
      in: header
      name: X-API-KEY

````