Get started with BlindPay Node.js SDK and make your first API call in under 5 minutes.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/blindpaylabs/blindpay-node/llms.txt
Use this file to discover all available pages before exploring further.
Get your credentials
You’ll need an API key and instance ID from the BlindPay dashboard:
- Sign up or log in at app.blindpay.com
- Navigate to your instance’s API Keys page
- Create a new API key
- Copy your API key and instance ID
Understanding the response format
All BlindPay SDK methods return a consistent response format with a discriminated union:Complete example
Here’s a complete example that creates a receiver and lists all receivers:Next steps
Core Concepts
Learn about receivers, payment rails, and quotes
Create a payout
Send crypto-to-fiat payments globally
Create a payin
Accept fiat-to-crypto payments
API Reference
Explore the complete API documentation
Common issues
Missing API key or instance ID
Missing API key or instance ID
Error:
BlindPayError: Api key not provided, get your api key on blindpay dashboardMake sure you’re passing both apiKey and instanceId to the BlindPay constructor:TypeScript errors
TypeScript errors
Error:
Cannot find module '@blindpay/node'Make sure TypeScript can find the types:- Check that
@blindpay/nodeis in yourpackage.jsondependencies - Run
npm installto ensure dependencies are installed - Check your
tsconfig.jsonhas"moduleResolution": "node"or"bundler"
401 Unauthorized errors
401 Unauthorized errors