Introduction to Platform
Biwse is a cryptocurrency wallets service witch you can access both via feature rich-reach dashboard and powerful API. Our platform allows you to accept and send cryptocurrency, create invoices which end users can pay with any supported currency.
This documentation contains useful articles and resources to start working with Biwse. Continue with 'Getting started' guide or go straight to API reference.
Try Now
You can use example below to see how Biwse API works.
Create invoice page
curl -X POST \-H "Content-Type: application/json" \-H "Accept: application/json" \-H "Authorization: Bearer YOUR_TOKEN" \https://api.biwse.com/v1/app/YOUR_APP_ID/invoice-d '{ "amount": 0.0001 }' \# Response:#{"status":true,"id":"invoice_id...","url":"https://biwse.com/invoice?id=invoice_id..."}
Get wallet balance
curl -X GET \-H "Content-Type: application/json" \-H "Accept: application/json" \-H "Authorization: Bearer YOUR_TOKEN" \https://api.biwse.com/v1/app/YOUR_APP_ID/{COIN_INDEX}/balance# Response:#{ "total": 1000000,"confirmed": 500000 }