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

# Get USD unit prices for token symbols

> Returns USD unit prices keyed by uppercased token symbol. Used to convert a USD amount into estimated destination-token units for tokens not present in the portfolio (e.g. a SOL or ETH destination the user does not hold).



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json get /prices
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /prices:
    get:
      tags:
        - Utilities
      summary: Get USD unit prices for token symbols
      description: >-
        Returns USD unit prices keyed by uppercased token symbol. Used to
        convert a USD amount into estimated destination-token units for tokens
        not present in the portfolio (e.g. a SOL or ETH destination the user
        does not hold).
      parameters:
        - schema:
            type: string
            minLength: 1
            description: Comma-separated token symbols to price (e.g. "SOL,ETH")
            example: SOL
          required: true
          description: Comma-separated token symbols to price (e.g. "SOL,ETH")
          name: symbols
          in: query
        - schema:
            type: string
            description: API key for authentication
            example: your-api-key
          required: true
          description: API key for authentication
          name: x-api-key
          in: header
        - schema:
            type: string
            pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
            description: >-
              API version identifier (e.g. "2026-04.amazon"). Optional today,
              will become required in a future release.
            example: 2026-04.amazon
          required: false
          description: >-
            API version identifier (e.g. "2026-04.amazon"). Optional today, will
            become required in a future release.
          name: x-api-version
          in: header
      responses:
        '200':
          description: USD unit prices for the requested symbols
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricesResponse'
        '400':
          description: Invalid request parameters or unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    PricesResponse:
      type: object
      properties:
        prices:
          type: object
          additionalProperties:
            type: number
          description: USD unit price keyed by uppercased token symbol
          example:
            SOL: 168.42
      required:
        - prices
    ErrorResponse:
      type: object
      properties:
        error:
          type: string
        details:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
              path:
                type: array
                items:
                  anyOf:
                    - type: string
                    - type: number
              code:
                type: string
            required:
              - message
      required:
        - error

````