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

# Get ETH price

> Returns current ETH price in USD with 1-minute caching



## OpenAPI

````yaml /api-reference/vibemarket_openapi.yml get /eth-price
openapi: 3.0.0
info:
  title: vibe.market Boosterbox API
  version: 1.0.0
  description: >
    API for managing boosterboxes, games (packs), and metadata on vibe.market.


    **Get your free API key at:**
    https://docs.vibechain.com/api-reference/vibemarket-intro


    **Default Chain:** Base (chainId: 8453)
servers:
  - url: https://build.vibechain.com/vibe/boosterbox
security: []
paths:
  /eth-price:
    get:
      summary: Get ETH price
      description: Returns current ETH price in USD with 1-minute caching
      parameters:
        - $ref: '#/components/parameters/API_KEY'
      responses:
        '200':
          description: ETH price data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EthPriceResponse'
components:
  parameters:
    API_KEY:
      in: header
      name: API-KEY
      description: >-
        Free API key needed to authorize requests. Get one at:
        https://docs.vibechain.com/api-reference/vibemarket-intro
      required: true
      schema:
        type: string
        default: DEMO_REPLACE_WITH_FREE_API_KEY
  schemas:
    EthPriceResponse:
      type: object
      properties:
        success:
          type: boolean
        price:
          type: number
          description: ETH price in USD
        priceFormatted:
          type: string
          description: Formatted price string (e.g., "$3,245.67")
        lastUpdated:
          type: string
          format: date-time
          description: When the price was last updated

````