Create Invoice
Create invoice
curl -X POST https://api.nebulox.io/api/invoice/create \
-H "Content-Type: application/json" \
-d '{
"apiKey": "YOUR_API_KEY",
"price": "100",
"orderId": "YOUR_ORDER_ID",
"baseCurrency": "usd",
"coinSymbol": "BTC",
"networkName": "Bitcoin",
"amount": "0.0025"
}'const axios = require('axios');
axios.post('https://api.nebulox.io/api/invoice/create', {
apiKey: 'YOUR_API_KEY',
price: '100',
orderId: 'YOUR_ORDER_ID',
baseCurrency: 'usd',
coinSymbol: 'BTC',
networkName: 'Bitcoin'
amount:'0.0025'
})
.then(function (response) {
console.log(response);
})
.catch(function (error) {
console.error(error);
});Make your first request
Creating invoice
Create Invoice.
Request Body
Name
Type
Description
Last updated