Uzum RateKeeper

Partner-facing foreign-exchange rate service. Converts an amount between currencies at the current Uzum rate and returns the partner's conversion limits. Documented on the Uzum Bank developer portal as rate-keeper-back.

Operations 2

POST /api/v1/partner/convert Convert #
POST /api/v1/partner/limits Limits #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/uzum-ratekeeper"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

uzum-ratekeeper-openapi.yaml Raw ↑
openapi: 3.1.0
info:
  title: rate-keeper-back
  version: 0.0.1
paths:
  /api/v1/partner/convert:
    post:
      tags:
        - partner
      summary: Convert
      operationId: convert_api_v1_partner_convert_post
      parameters:
        - name: X-API-Key
          in: header
          required: true
          schema:
            type: string
            description: API Key
            title: X-Api-Key
          description: API Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              anyOf:
                - $ref: '#/components/schemas/ConvertToUzCommand'
                - $ref: '#/components/schemas/ConvertFromUzCommand'
              title: Command
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_ConvertResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/partner/limits:
    post:
      tags:
        - partner
      summary: Limits
      operationId: limits_api_v1_partner_limits_post
      parameters:
        - name: X-API-Key
          in: header
          required: true
          schema:
            type: string
            description: API Key
            title: X-Api-Key
          description: API Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LimitsCommand'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_LimitsResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ApiResponse_ConvertResponse_:
      properties:
        code:
          $ref: '#/components/schemas/ErrorCode'
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
          examples:
            - successful
        result:
          anyOf:
            - $ref: '#/components/schemas/ConvertResponse'
            - type: 'null'
      type: object
      required:
        - code
        - result
      title: ApiResponse[ConvertResponse]
    ApiResponse_LimitsResponse_:
      properties:
        code:
          $ref: '#/components/schemas/ErrorCode'
        message:
          anyOf:
            - type: string
            - type: 'null'
          title: Message
          examples:
            - successful
        result:
          anyOf:
            - $ref: '#/components/schemas/LimitsResponse'
            - type: 'null'
      type: object
      required:
        - code
        - result
      title: ApiResponse[LimitsResponse]
    ConvertFromUzCommand:
      properties:
        partnerId:
          type: string
          format: uuid
          title: Partnerid
          description: Partner ID within Rate Keeper
        amount:
          type: integer
          title: Amount
          description: >-
            The amount of currency to be converted, in the smallest currency
            units.
        ips:
          anyOf:
            - $ref: '#/components/schemas/IPS'
            - type: 'null'
          description: Payment system within Uzbekistan.
        currencyFrom:
          type: string
          enum:
            - USD
            - RUB
            - EUR
            - UZS
          title: Currencyfrom
          description: >-
            Currency code of the source currency for the transfer, following the
            ISO 4217 standard.
        currencyTo:
          type: string
          enum:
            - USD
            - RUB
            - EUR
            - UZS
          title: Currencyto
          description: >-
            Currency code of the target currency for the transfer, following the
            ISO 4217 standard.
        direction:
          type: string
          enum:
            - FROM_UZ
          const: FROM_UZ
          title: Direction
          description: Transfer direction.
      type: object
      required:
        - partnerId
        - amount
        - currencyFrom
        - currencyTo
        - direction
      title: ConvertFromUzCommand
    ConvertResponse:
      properties:
        currencyFrom:
          allOf:
            - $ref: '#/components/schemas/Currency'
          description: >-
            Currency code of the source currency for the transfer, following the
            ISO 4217 standard.
        currencyTo:
          allOf:
            - $ref: '#/components/schemas/Currency'
          description: >-
            Currency code of the target currency for the transfer, following the
            ISO 4217 standard.
        rate:
          type: string
          title: Rate
          description: Курс конвертации
        amountFrom:
          type: integer
          title: Amountfrom
          description: Сумма до конвертации. В минимальных единицах валюты
        amountTo:
          type: integer
          title: Amountto
          description: Сумма после конвертации. В минимальных единицах валюты
      type: object
      required:
        - currencyFrom
        - currencyTo
        - rate
        - amountFrom
        - amountTo
      title: ConvertResponse
    ConvertToUzCommand:
      properties:
        partnerId:
          type: string
          format: uuid
          title: Partnerid
          description: Partner ID within Rate Keeper
        amount:
          type: integer
          title: Amount
          description: >-
            The amount of currency to be converted, in the smallest currency
            units.
        ips:
          anyOf:
            - $ref: '#/components/schemas/IPS'
            - type: 'null'
          description: Payment system within Uzbekistan.
        currencyFrom:
          type: string
          enum:
            - USD
            - RUB
            - EUR
            - UZS
          title: Currencyfrom
          description: >-
            Currency code of the source currency for the transfer, following the
            ISO 4217 standard.
        currencyTo:
          type: string
          enum:
            - USD
            - RUB
            - EUR
            - UZS
          title: Currencyto
          description: >-
            Currency code of the target currency for the transfer, following the
            ISO 4217 standard.
        direction:
          type: string
          enum:
            - TO_UZ
          const: TO_UZ
          title: Direction
          description: Transfer direction.
      type: object
      required:
        - partnerId
        - amount
        - currencyFrom
        - currencyTo
        - direction
      title: ConvertToUzCommand
    Currency:
      type: string
      enum:
        - USD
        - EUR
        - RUB
        - UZS
        - UNKNOWN
      title: Currency
    ErrorCode:
      type: integer
      enum:
        - 0
        - 1000
        - 2000
        - 3000
        - 3001
        - 3002
        - 3003
        - 3004
        - 5000
        - 5001
      title: ErrorCode
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    IPS:
      type: string
      enum:
        - HUMO
        - UZCARD
      title: IPS
    LimitsCommand:
      properties:
        amount:
          type: integer
          title: Amount
          description: >-
            The amount of currency to be converted in UZS, in the smallest
            currency units.
        currencyTo:
          type: string
          enum:
            - USD
            - EUR
          title: Currencyto
          description: Currency code according to ISO 4217.
        rateType:
          allOf:
            - $ref: '#/components/schemas/RateType'
          description: Type of exchange rate for conversion.
      type: object
      required:
        - amount
        - currencyTo
        - rateType
      title: LimitsCommand
    LimitsResponse:
      properties:
        amountFrom:
          type: integer
          title: Amountfrom
          description: >-
            Amount of currency received for conversion in UZS, in the smallest
            currency units.
        amountTo:
          type: integer
          title: Amountto
          description: Сконвертированная сумма в минимальных единицах валюты
        currencyTo:
          allOf:
            - $ref: '#/components/schemas/Currency'
          description: Валюта конвертации
      type: object
      required:
        - amountFrom
        - amountTo
        - currencyTo
      title: LimitsResponse
    RateType:
      type: string
      enum:
        - OFFICIAL
        - SELL
        - BUY
      title: RateType
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError