Introduction

neetpay is a permissionless crypto payment gateway. Accept 18+ cryptocurrencies with a single API integration. No KYC, no approval process, no middlemen.

Quick example

Create a payment invoice with a single API call:

create-payment.ts
const response = await fetch("https://api.neetpay.com/v1/invoice", {
  method: "POST",
  headers: {
    "Content-Type": "application/json",
    "Authorization": "Bearer sk_live_your_api_key",
  },
  body: JSON.stringify({
    amount: 29.99,
    currency: "USD",
    description: "Pro Plan - Monthly",
  }),
});

const { trackId, payLink } = await response.json();
// Redirect user to payLink or use white-label flow

Core concepts

  • Invoices — Create payment requests with amount, currency, and optional metadata.
  • Webhooks — Receive real-time notifications when payment status changes.
  • White Label — Build custom payment flows with your own UI. Get pay addresses directly.

Next up

Follow the Quick Start guide to create your first payment in under 5 minutes.