> ## Documentation Index
> Fetch the complete documentation index at: https://cobo.com/products/agentic-wallet/manual/llms.txt
> Use this file to discover all available pages before exploring further.

# Get coin prices

> This operation retrieves the latest prices for the specified asset coins. Prices are sourced from a background-synced table and are eventually consistent. USDT is always priced at `1` USD. The response is a map of coin ID to price string.



## OpenAPI

````yaml get /api/v1/coin-price
openapi: 3.1.0
info:
  title: Cobo Agentic Wallet Service
  description: Unified wallet engine for human and agent principals
  version: 1.3.0
servers: []
security: []
paths:
  /api/v1/coin-price:
    get:
      tags:
        - Coin Price
      summary: Get coin prices
      description: >-
        This operation retrieves the latest prices for the specified asset
        coins. Prices are sourced from a background-synced table and are
        eventually consistent. USDT is always priced at `1` USD. The response is
        a map of coin ID to price string.
      operationId: get_asset_coin_prices
      parameters:
        - name: asset_coins
          in: query
          required: true
          schema:
            type: string
            minLength: 1
            description: Comma-separated asset coin IDs, e.g. ETH,BTC
            title: Asset Coins
          description: Comma-separated asset coin IDs, e.g. ETH,BTC
        - name: currency
          in: query
          required: false
          schema:
            const: USD
            type: string
            description: Currency for returned prices. Currently only `USD` is supported.
            default: USD
            title: Currency
          description: Currency for returned prices. Currently only `USD` is supported.
        - name: X-API-Key
          in: header
          required: false
          schema:
            title: X-Api-Key
            type: string
            nullable: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandardResponse_dict_str__str__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WrappedValidationError'
components:
  schemas:
    StandardResponse_dict_str__str__:
      properties:
        success:
          type: boolean
          title: Success
          default: true
        result:
          additionalProperties:
            type: string
          type: object
          title: Result
        suggestion:
          type: string
          title: Suggestion
          default: ''
        message:
          type: string
          title: Message
          default: ''
        meta:
          $ref: '#/components/schemas/PaginationMeta'
          nullable: true
      type: object
      required:
        - result
      title: StandardResponse[dict[str, str]]
    WrappedValidationError:
      title: WrappedValidationError
      type: object
      required:
        - success
        - error
      properties:
        success:
          type: boolean
          const: false
          default: false
          title: Success
        error:
          type: object
          title: Error
          required:
            - detail
          properties:
            detail:
              type: array
              title: Detail
              items:
                $ref: '#/components/schemas/ValidationError'
    PaginationMeta:
      properties:
        total:
          title: Total
          type: integer
          nullable: true
        offset:
          title: Offset
          type: integer
          nullable: true
        limit:
          title: Limit
          type: integer
          nullable: true
        has_more:
          title: Has More
          type: boolean
          nullable: true
        after:
          title: After
          type: string
          nullable: true
        before:
          title: Before
          type: string
          nullable: true
      type: object
      title: PaginationMeta
      description: |-
        Pagination metadata for list responses.

        Supports both legacy offset-based and cursor-based pagination.
        Cursor fields (``has_more``, ``after``, ``before``) are populated for
        cursor-paginated endpoints.  Legacy fields (``offset``, ``limit``) are
        populated when the caller uses the deprecated ``offset`` parameter.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````