BitPowr Technologies, Inc. Swap API

The Swap API from BitPowr Technologies, Inc. — 3 operation(s) for swap.

Operations 3

POST /integration/swap/exchange Initiate swap request #
POST /integration/swap/rates Get swap rates #
POST /integration/swap/mininum_exchange_amount Get minimum exchange amount #

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/bitpowr-technologies-inc-swap-api"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

bitpowr-technologies-inc-swap-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bitpowr Reference Account Swap API
  contact: {}
  version: '1.0'
  x-apievangelist-source: reconstructed from docs.bitpowr.com ReadMe per-operation OpenAPI fragments (2026-07-18)
servers:
- url: https://developers.bitpowr.com/api/v1
tags:
- name: Swap
paths:
  /integration/swap/exchange:
    post:
      tags:
      - Swap
      summary: Initiate swap request
      description: This endpoint swaps from one crypto currency to another
      operationId: createswap
      parameters: []
      requestBody:
        content:
          application/json:
            encoding: {}
            schema:
              required:
              - sourceCurrency
              - sourceAmount
              - destinationCurrency
              - destinationAddress
              type: object
              properties:
                sourceCurrency:
                  type: string
                  description: The currency you want to swap from
                  example: BTC
                sourceAmount:
                  type: number
                  description: The amount you want to swap
                  example: '200'
                destinationCurrency:
                  type: string
                  description: The currency you want to swap to
                  example: TRON
                destinationAddress:
                  type: string
                  description: The address you want to swap the asset to
                  example: Tv...
                refundAddress:
                  type: string
                  description: The address to refund the initial assets
                  example: bc1....
        required: false
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                title: createstake
                required:
                - status
                - data
                type: object
                properties:
                  status:
                    type: string
                  data:
                    type: object
                example:
                  status: success
                  data: {}
              example:
                status: success
                data: {}
      deprecated: false
      security:
      - bearer: []
  /integration/swap/rates:
    post:
      tags:
      - Swap
      summary: Get swap rates
      description: This endpoint returns swap rates
      operationId: getswaprates
      parameters: []
      requestBody:
        content:
          application/json:
            encoding: {}
            schema:
              required:
              - sourceCurrency
              - sourceAmount
              - destinationCurrency
              type: object
              properties:
                sourceCurrency:
                  type: string
                  description: The currency you want to swap from
                  example: BTC
                sourceAmount:
                  type: number
                  description: The amount you want to swap
                  example: '200'
                destinationCurrency:
                  type: string
                  description: The currency you want to swap to
                  example: TRON
        required: false
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                title: createstake
                required:
                - status
                - data
                type: object
                properties:
                  status:
                    type: string
                  data:
                    type: object
                example:
                  status: success
                  data: {}
              example:
                status: success
                data: {}
      deprecated: false
      security:
      - bearer: []
  /integration/swap/mininum_exchange_amount:
    post:
      tags:
      - Swap
      summary: Get minimum exchange amount
      description: This endpoint retrieves the minimum exchange amount required for swapping operations.
      operationId: minimumexchangeamount
      parameters: []
      requestBody:
        content:
          application/json:
            encoding: {}
            schema:
              required:
              - sourceCurrency
              - destinationCurrency
              type: object
              properties:
                sourceCurrency:
                  type: string
                  description: The currency you want to swap from
                  example: LTC
                destinationCurrency:
                  type: string
                  description: The currency you want to swap to
                  example: BTC
        required: false
      responses:
        '200':
          description: OK
          headers: {}
          content:
            application/json:
              schema:
                title: minimumexchangeamount
                required:
                - status
                - data
                type: object
                properties:
                  status:
                    type: string
                  data:
                    type: object
                example:
                  status: success
                  data:
                    min_amount: '0.34207888'
                  message: Successfully fetch minimum exchange amount
      deprecated: false
      security:
      - bearer: []
components:
  securitySchemes:
    bearer:
      type: http
      scheme: bearer