Biconomy SDK
Search
⌃K

Bundler APIs

Transaction Id API:

Transaction Ids are used to track any transaction's state. One can query our Bundler to get data related to the current state of the transaction.
get
https://sdk-relayer.prod.biconomy.io/api/v1/relay/status?transactionId=<TXN_ID>&chainId=<CHAIN_ID>
Returns the transaction data for a given transaction id and chain id

Curl Request:

curl --location --request GET 'https://sdk-relayer.prod.biconomy.io/api/v1/relay/status?transactionId=0x45862a0c1fc697fa7c8e4d8c856a416fb956d3b16d19795d77bad60008341322&chainId=80001'

NodeJs:

var axios = require('axios');
var config = {
method: 'get',
url: 'https://sdk-relayer.prod.biconomy.io/api/v1/relay/status?transactionId=0x45862a0c1fc697fa7c8e4d8c856a416fb956d3b16d19795d77bad60008341322&chainId=80001',
headers: { }
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});