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

# Get Conversion Fees (Beta)

> Get an entity's stablecoin conversion fee tiers and month-to-date net conversion volume per currency.



## OpenAPI

````yaml get /v1/entities/{entity_id}/conversion/fees
openapi: 3.0.1
info:
  title: REST API
  description: >-
    The Coinbase Prime REST API provides programmatic access to trading,
    custody, staking, market data, and account management functionality.
  version: '0.1'
servers:
  - url: https://api.prime.coinbase.com/
security: []
tags:
  - name: PrimeRESTAPI
paths:
  /v1/entities/{entity_id}/conversion/fees:
    get:
      tags:
        - Financing
      summary: Get Conversion Fees (Beta)
      description: >-
        Get an entity's stablecoin conversion fee tiers and month-to-date net
        conversion volume per currency.
      operationId: PrimeBeta_GetConversionFees
      parameters:
        - name: entity_id
          in: path
          description: The unique ID of the entity.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/coinbase.public_rest_api.beta.GetConversionFeesResponse
components:
  schemas:
    coinbase.public_rest_api.beta.GetConversionFeesResponse:
      type: object
      properties:
        fees:
          type: array
          items:
            $ref: '#/components/schemas/coinbase.public_rest_api.beta.ConversionFee'
      description: >-
        Response for GetConversionFees: one ConversionFee row per supported
        pair.
    coinbase.public_rest_api.beta.ConversionFee:
      type: object
      properties:
        from_currency:
          type: string
          description: Source currency ticker.
          example: USDC
        to_currency:
          type: string
          description: Destination currency ticker.
          example: USD
        net_conversion_volume_mtd:
          type: string
          description: >-
            Month-to-date net conversion volume denominated in from_currency,
            aggregated at the owning organization level. Positive = net
            from->to, negative = net to->from.
          example: '12345678.90'
        fee_tiers:
          type: array
          description: |-
            Progressive fee tiers applicable to this entity for this pair.
            Tiers are ordered from lowest to highest threshold.
          items:
            $ref: >-
              #/components/schemas/coinbase.public_rest_api.beta.ConversionFeeTier
      description: |-
        Per-pair conversion fee row: month-to-date net conversion volume and
        the applicable progressive fee tiers for an entity.
    coinbase.public_rest_api.beta.ConversionFeeTier:
      type: object
      properties:
        min_threshold:
          type: string
          description: Inclusive lower bound for the tier in USD.
          example: '10000000'
        max_threshold:
          type: string
          description: >-
            Exclusive upper bound for the tier in USD. Empty string for the
            highest, unbounded tier.
          example: '150000000'
        rate_bps:
          type: string
          description: Tier rate in basis points.
          example: '5.0'
      description: A single fee tier in the progressive stablecoin conversion schedule.

````