NOWPayments Estimates API

Price estimation and minimum amounts

Operations 2

GET /estimate Get estimated price #
GET /min-amount Get minimum payment 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/now-payments-estimates-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

now-payments-estimates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: NOWPayments Authentication Estimates API
  description: 'NOWPayments is a crypto payment gateway that enables businesses to accept 300+ cryptocurrencies, create payment invoices, process recurring subscriptions, and manage merchant mass payouts. The API supports automatic coin conversion, IPN webhooks, and fiat withdrawals.

    '
  version: 1.0.0
  contact:
    name: NOWPayments Support
    email: support@nowpayments.io
    url: https://nowpayments.io/help
  termsOfService: https://nowpayments.io/terms
servers:
- url: https://api.nowpayments.io/v1
  description: Production server
- url: https://api.sandbox.nowpayments.io/v1
  description: Sandbox server
security:
- ApiKeyAuth: []
tags:
- name: Estimates
  description: Price estimation and minimum amounts
paths:
  /estimate:
    get:
      operationId: getEstimatePrice
      summary: Get estimated price
      description: 'Calculates the approximate price in cryptocurrency based on a given fiat or crypto amount. Useful for showing customers how much crypto they need to pay.

        '
      tags:
      - Estimates
      parameters:
      - name: amount
        in: query
        required: true
        description: Amount to convert
        schema:
          type: number
          format: double
          example: 100.5
      - name: currency_from
        in: query
        required: true
        description: Currency to convert from (e.g., usd, eur, btc)
        schema:
          type: string
          example: usd
      - name: currency_to
        in: query
        required: true
        description: Currency to convert to (e.g., btc, eth)
        schema:
          type: string
          example: btc
      responses:
        '200':
          description: Estimated price
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EstimateResponse'
              example:
                currency_from: usd
                amount_from: 100.5
                currency_to: btc
                estimated_amount: 0.00267
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /min-amount:
    get:
      operationId: getMinimumPaymentAmount
      summary: Get minimum payment amount
      description: 'Returns the minimum payment amount for a specific currency pair. Payments below this threshold cannot be processed.

        '
      tags:
      - Estimates
      parameters:
      - name: currency_from
        in: query
        required: true
        description: Source currency
        schema:
          type: string
          example: usd
      - name: currency_to
        in: query
        required: true
        description: Target cryptocurrency
        schema:
          type: string
          example: btc
      responses:
        '200':
          description: Minimum payment amount
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MinAmountResponse'
              example:
                currency_from: usd
                currency_to: btc
                min_amount: 5.0e-05
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    BadRequest:
      description: Invalid request parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  schemas:
    MinAmountResponse:
      type: object
      properties:
        currency_from:
          type: string
          description: Source currency code
        currency_to:
          type: string
          description: Target currency code
        min_amount:
          type: number
          format: double
          description: Minimum payment amount in the target currency
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
          description: Error message
        errors:
          type: array
          description: Detailed error list
          items:
            type: string
    EstimateResponse:
      type: object
      properties:
        currency_from:
          type: string
          description: Source currency code
        amount_from:
          type: number
          format: double
          description: Source amount
        currency_to:
          type: string
          description: Target currency code
        estimated_amount:
          type: number
          format: double
          description: Estimated target amount
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: NOWPayments API key obtained from your merchant dashboard
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from the /auth endpoint (required for mass payout operations)
externalDocs:
  description: NOWPayments API Documentation
  url: https://nowpayments.io/help/api