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

# Get pool rates

> Returns pool rates in stables (median USDT/USDC price)



## OpenAPI

````yaml api-reference/openapi.json get /v1/poolrates
openapi: 3.1.0
info:
  title: dKit API
  description: Cross-chain swap aggregation API
  contact:
    name: API Support
    email: support@dkit.xyz
  version: v1
servers:
  - url: https://api.dkit.xyz
    description: Production API server
  - url: https://staging-api.dkit.xyz
    description: Staging API server
security: []
tags:
  - name: Core Endpoints
    description: Primary swap operations for quotes and tracking
  - name: Service Endpoints
    description: Specific transaction and integrations services
  - name: Data Endpoints
    description: Information endpoints for tokens, rates, and network data
externalDocs:
  description: API Documentation
  url: https://docs.dkit.xyz
paths:
  /v1/poolrates:
    get:
      tags:
        - Data Endpoints
      summary: Get pool rates
      description: Returns pool rates in stables (median USDT/USDC price)
      responses:
        '200':
          description: Pool rates retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PoolRatesResponse'
              examples:
                MayaChain pool rates:
                  value:
                    rates:
                      - asset: ETH.ETH
                        priceInCacao: '12.34567890'
                        priceInUsd: '3250.00'
                        poolDepth: '50000000000000'
                        volume24h: '10000000000000'
                      - asset: BTC.BTC
                        priceInCacao: '165.43210987'
                        priceInUsd: '43500.00'
                        poolDepth: '100000000000000'
                        volume24h: '25000000000000'
                      - asset: DASH.DASH
                        priceInCacao: '0.32145678'
                        priceInUsd: '84.60'
                        poolDepth: '500000000000'
                        volume24h: '50000000000'
                      - asset: KUJI.KUJI
                        priceInCacao: '0.01234567'
                        priceInUsd: '3.25'
                        poolDepth: '250000000000'
                        volume24h: '25000000000'
                    cacaoPriceUsd: '0.263'
                    timestamp: 1704067200
                  summary: Current MayaChain pool rates
                ThorChain pool rates:
                  value:
                    rates:
                      - asset: ETH.ETH
                        priceInRune: '650.12345678'
                        priceInUsd: '3250.00'
                        poolDepth: '75000000000000'
                        volume24h: '15000000000000'
                      - asset: BTC.BTC
                        priceInRune: '8700.98765432'
                        priceInUsd: '43500.00'
                        poolDepth: '150000000000000'
                        volume24h: '35000000000000'
                      - asset: AVAX.AVAX
                        priceInRune: '7.12345678'
                        priceInUsd: '35.60'
                        poolDepth: '25000000000000'
                        volume24h: '5000000000000'
                      - asset: ETH.USDC-0XA0B86991C6218B36C1D19D4A2E9EB0CE3606EB48
                        priceInRune: '0.20000000'
                        priceInUsd: '1.00'
                        poolDepth: '10000000000000'
                        volume24h: '2000000000000'
                    runePriceUsd: '5.00'
                    timestamp: 1704067200
                  summary: Current ThorChain pool rates
        '500':
          description: Internal Server Error - An unexpected error occurred on the server.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
components:
  schemas:
    PoolRatesResponse:
      type: array
      items:
        type: object
        properties:
          assetId:
            type: string
          decimals:
            type: number
          blockchain:
            type: string
          symbol:
            type: string
          price:
            type: number
          priceUpdatedAt:
            type: string
        required:
          - assetId
          - decimals
          - blockchain
          - symbol
          - price
          - priceUpdatedAt
    InternalServerError:
      type: object
      properties:
        type:
          type: string
          enum:
            - /errors/internal-server-error
        title:
          type: string
          enum:
            - Internal Server Error
        status:
          type: number
          enum:
            - 500
        detail:
          type: string
          default: An unexpected error occurred
        instance:
          type: string
        timestamp:
          type: string
          format: date-time
        traceId:
          type: string
      required:
        - type
        - title
        - status

````