Nano Unit Conversion API

Conversion between Nano and raw unit denominations

Operations 2

POST /nano_to_raw Convert Nano to raw units #
POST /raw_to_nano Convert raw units to Nano #

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/nano-unit-conversion-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

nano-unit-conversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nano RPC Accounts Unit Conversion API
  description: 'The Nano RPC API is a JSON-RPC HTTP interface for interacting with the Nano network. Nano is a feeless, instant digital currency using a block-lattice architecture where each account maintains its own blockchain. The RPC API supports account queries, block operations, wallet management, node diagnostics, and unit conversions. All requests are POST with a JSON body containing an "action" field identifying the RPC command.

    '
  version: 1.0.0
  contact:
    name: Nano Foundation
    url: https://nano.org/en/developers
    email: integrations@nano.org
  license:
    name: BSD-2-Clause
    url: https://opensource.org/licenses/BSD-2-Clause
  termsOfService: https://nano.org/terms-of-use
servers:
- url: http://localhost:7076
  description: Local Nano node (default RPC port)
tags:
- name: Unit Conversion
  description: Conversion between Nano and raw unit denominations
paths:
  /nano_to_raw:
    post:
      operationId: nano_to_raw
      summary: Convert Nano to raw units
      description: Converts an amount from Nano denomination to raw units (10^30 raw = 1 Nano).
      tags:
      - Unit Conversion
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - action
              - amount
              properties:
                action:
                  type: string
                  enum:
                  - nano_to_raw
                amount:
                  type: string
            example:
              action: nano_to_raw
              amount: '1'
      responses:
        '200':
          description: Equivalent amount in raw units
          content:
            application/json:
              schema:
                type: object
                properties:
                  amount:
                    type: string
                    example: '1000000000000000000000000000000'
  /raw_to_nano:
    post:
      operationId: raw_to_nano
      summary: Convert raw units to Nano
      description: Converts an amount from raw units to Nano denomination.
      tags:
      - Unit Conversion
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - action
              - amount
              properties:
                action:
                  type: string
                  enum:
                  - raw_to_nano
                amount:
                  type: string
                  description: Amount in raw units
            example:
              action: raw_to_nano
              amount: '1000000000000000000000000000000'
      responses:
        '200':
          description: Equivalent amount in Nano
          content:
            application/json:
              schema:
                type: object
                properties:
                  amount:
                    type: string
                    example: '1'
externalDocs:
  description: Nano RPC Protocol Documentation
  url: https://docs.nano.org/commands/rpc-protocol/