For the complete documentation index, see llms.txt. This page is also available as Markdown.

Transaction Detail

What is this request?

You can see more detailed transactions with this service.

What can I do with this service?

With this service, you have a more detailed transaction and transaction aml information. You can see what was done in the transaction and with which contract this transaction was run.

Tutorial

var axios = require('axios');

axios.get('https://api.getdefy.co/v2/analyze/tx_detail', {
    params: {
      hash: '0xaef1b250f3c09dde83c5c040c4b0fa2363db5b35980e74cd72560d509b365299',
      network: 'polygon',
      apikey: 'API_KEY',
    },
  })
  .then(function (response) {
    console.log(JSON.stringify(response.data));
  })
  .catch(function (error) {
    console.log(error);
  });

Options

  • hash (required): A transaction hash (i.e. 0x1a2b3x...).

  • network (required): A transaction network (i.e. avalanche...).

  • apikey (required): API key for requests.

Request Example

GET https://api.getdefy.co/v2/analyze/tx_detail

Query Parameters

Name
Type
Description

apikey*

String

API Key

hash*

String

Transaction Hash

network*

String

Transaction Network

Last updated