Wallet Experience APIs
POST Transactions
Create a new pending transaction for the current user.
POST
/
v1
/
transactions
Access to this API requires authentication. To receive help on accessing this API, please reach out to sales@bitski.com.
Users can be prompted to sign your transaction after creation. Contact us for help creating transactions.
Redirect after creation
/// See example payload for body and headers
const response = await fetch('https://api.bitski.com/v1/transactions', {
method: 'POST',
body: JSON.stringify({ transaction }),
headers,
});
// Parse response
const { transaction } = response.json();
// Open or redirect to signing UI
window.open(`https://sign.bitski.com/transactions/{transaction.id}`);
Examples