Get Transactions by Address

Get Polygon transactions by address. This includes incoming and outgoing transactions for the address.

GET /v1/polygon/account/transactions/{address}

Path Parameters

NameTypeDescription

address*

String

Account address you want to get balance of

Query Parameters

NameTypeDescription

pageSize*

number

Max number of items per page is 50.

offset

Number

Offset to obtain next page of the data.

from

Number

Transactions from this block onwords will be included.

to

Number

Transactions up to this block will be included.

sort

String

Sorting of the data. ASC - oldest first, DESC - newest first.

[
    {
        "blockHash": "0xcf2c40f475e78c7c19778e1ae999a0e371c9319b38182ea15dc94536f13f9137",
        "status": true,
        "blockNumber": 6470854,
        "from": "0x81b7E08F65Bdf5648606c89998A9CC8164397647",
        "gas": 21000,
        "gasPrice": "1000000000",
        "transactionHash": "0xe6e7340394958674cdf8606936d292f565e4ecc476aaa8b258ec8a141f7c75d7",
        "input": "0x",
        "nonce": 26836405,
        "to": "0xbC546fa1716Ed886967cf73f40e8F2F5e623a92d",
        "transactionIndex": 3,
        "value": "1000000000000000000",
        "gasUsed": 21000,
        "cumulativeGasUsed": 314159,
        "contractAddress": "0x81b7E08F65Bdf5648606c89998A9CC8164397647",
        "logs": []
    }
]

Last updated