Comment on page
Transaction History
With this service, you can see all your wallet activities. You can instantly see what your desired wallet has done on each network.
With this service, you can see the past transactions in your wallet network-specific, and you can create a user-specific historical transactions section in your application.

Transaction History Example Screen
var axios = require('axios');
axios.get('https://api.getdefy.co/v1/o/wallet/transactions', {
params: {
address: '0x787970ad122d5947579e613c2464d9540081b46f',
chain: 'eth',
language: 'en',
key: 'API_KEY',
},
})
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
address
(required): A user address (i.e.0x1a2b3x...
). If specified, the user attached to the query is ignored and the address will be used instead.chain
(required): Blockchain network name. Can beeth, bsc, avax
andmatic.
key
(required): API key for requests.language
(optional): Service language. Default value isen
. Can been
ortr
.
get
https://api.getdefy.co/v1/o
/wallet/transactions
Request Example
Parameters
Query
key*
API Key
chain*
Network Info
address*
Wallet Address
language
Can be: "en", "tr"
Responses
200: OK
400: Bad Request
Last modified 4mo ago