Documentation Checkout API Username API Wallets API Miscellaneous

Nano Email API

Send nano to any email address(s) on the internet.

Online UI

https://email.nano.to

Single Email

curl -d '{
  "action": "nano_email",
  "email": "[email protected]",
  "refund_address": "YOUR_NANO_ADDRESS",
  "amount": 10,
  "expire": "30 days",
  "email_receipt": "OPTIONAL_YOUR_EMAIL"
}' \
-H "Content-Type: application/json" \
"https://rpc.nano.to"

Response:

{
    "id": "d8d4c0c5",
    "address": "nano_3ah6roa747fcibspui3w41bp3qw96juxcozwi8n67kqe15cobec5imkkt9qu",
    "browser": "http://nano.to/id_d8d4c0c5",
    "check": "https://api.nano.to/confirm/d8d4c0c5",
    "amount": 10,
    "service_fee": 0,
    "qrcode": "data:image/png;base64,iVBORw0KGgoAAAAN...AAASUVORK5CYII=",
    "amount_raw": "10000000000000000000000000000000",
    "emails": [{
        "email": "[email protected]",
        "amount": 10
    }]
}

Batch Sending

curl -d '{
  "action": "nano_email",
  "emails": [ "[email protected]", "[email protected]" ],
  "from": "[email protected]",
  "message": "Free crypto from your favorite CEO",
  "refund_address": "YOUR_NANO_ADDRESS",
  "amount": 10,
  "expire": "30 days"
}' \
-H "Content-Type: application/json" \
"https://rpc.nano.to"

Response:

{
    "id": "f524bf87",
    "address": "nano_16bbqkd3umn6phhij19aq9zi6i5zstaeppz4i1i4b1qg5mjp8rc7pnt7shse",
    "browser": "http://nano.to/id_f524bf87",
    "check": "https://api.nano.to/confirm/f524bf87",
    "from": "[email protected]",
    "message": "Free crypto from your favorite CEO",
    "subtotal": 10,
    "service_fee": 0,
    "amount": 10,
    "qrcode": "data:image/png;base64,iVBORw0KGgoA...SuQmCC",
    "amount_raw": "10100000000000000000000000000000",
    "emails": [
        {
            "email": "[email protected]",
            "amount": 5
        }, 
        {
            "email": "[email protected]",
            "amount": 5
        }
    ]
}

Confirm Payment

Send funds to address and do a GET request on check.

Available Options

Webhook POST

{
    "id": "f524bf87",
    "success": true,
    "checkout": "https://api.nano.to/checkout/f524bf87",
    "recipients": [
        {
            "email": "[email protected]",
            "amount": 5,
            "hash": "E2FB233EF4554...78AB89917D3",
            "explorer": "https://nanobrowse.com/block/E2FB233EF4554...78AB89917D3"
        },
        {
            "email": "[email protected]",
            "amount": 5,
            "hash": "67D9F9F035...3CEA098FBF49D",
            "explorer": "https://nanobrowse.com/block/67D9F9F035...3CEA098FBF49D"
        }
    ]
}

line

Dedicated Support