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

# Get Event Image

> Retrieve the image URL for a specific event by event ticker.



## OpenAPI

````yaml openapi.json get /v1/tokens/event/{eventTicker}/image
openapi: 3.0.0
info:
  title: Swaps API
  description: The Swaps API documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://swap-api.flux.fun
    description: Production
  - url: http://localhost:3000
    description: Development
security: []
tags: []
paths:
  /v1/tokens/event/{eventTicker}/image:
    get:
      tags:
        - Prediction Markets & Portfolio
      summary: Get Event Image
      description: Retrieve the image URL for a specific event by event ticker.
      operationId: TokensController_getEventImage
      parameters:
        - name: eventTicker
          required: true
          in: path
          description: The event ticker identifier
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  imageUrl:
                    type: string
                    nullable: true

````