> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bubblemaps.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Token Screenshot

<Info>**Credit cost:** 25 per request.</Info>

<Warning>This endpoint is in **beta**. Deal with caution.</Warning>

Get a screenshot of the bubble map for a given token.

The response is a URL to a rendered image of the map, plus the time it was last updated.

<Note>
  This is a static image. For the interactive widget, see the [iFrame
  Integration](/iframe/introduction). For the underlying map data, see [Get
  Token Bubble Map](/data/api/tokens/map).
</Note>


## OpenAPI

````yaml GET /v0/tokens/screenshot/{chain}/{token_address}
openapi: 3.1.0
info:
  title: Bubblemaps Data API
  version: 0.3.0
servers:
  - url: https://api.bubblemaps.io
security: []
paths:
  /v0/tokens/screenshot/{chain}/{token_address}:
    get:
      tags:
        - v0
      summary: Get Token Screenshot
      operationId: get_token_screenshot_v0_tokens_screenshot__chain___token_address__get
      parameters:
        - name: chain
          in: path
          required: true
          schema:
            $ref: '#/components/schemas/ChainIdV0'
        - name: token_address
          in: path
          required: true
          schema:
            type: string
            title: Token Address
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScreenshotV0'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ChainIdV0:
      type: string
      enum:
        - eth
        - base
        - solana
        - tron
        - bsc
        - sonic
        - ton
        - avalanche
        - polygon
        - monad
        - hyperevm
        - arbitrum
        - robinhood
      title: ChainIdV0
    ScreenshotV0:
      properties:
        image_url:
          type: string
          title: Image Url
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - image_url
        - updated_at
      title: ScreenshotV0
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ApiKey

````