Skip to main content
GET
/
v2
/
api
Get Plasma Deposits by Address
curl --request GET \
  --url https://api.etherscan.io/v2/api
{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "hash": "0xf645deb2b6fbb8b76ccbcf4bde782e28d3520e8a30e9a568b9b8c526e2fd8434",
      "blockNumber": "51844560",
      "timeStamp": "1704181285",
      "from": "0x0000000000000000000000000000000000000000",
      "address": "0x4880bd4695a8e59dc527d124085749744b6c988e",
      "amount": "2341706540000000000",
      "tokenName": "Polygon Token",
      "symbol": "POL",
      "contractAddress": "0x0000000000000000000000000000000000001010",
      "divisor": "18"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.etherscan.io/llms.txt

Use this file to discover all available pages before exploring further.

Effective July 1, 2026, the maximum records returned per request will be reduced from 10,000 to 1,000 for Free tier API users. See the full list of affected endpoints.
Polygon Mainnet Gnosis BitTorrent Chain Mainnet

Query Parameters

apikey
string
default:"YourApiKeyToken"
Your Etherscan API key.
chainid
string
default:"137"
Chain ID to query, eg 137 for Polygon from our supported chains.
module
string
default:"account"
Set to account for this endpoint.
action
string
default:"txnbridge"
Set to txnbridge for this endpoint.
address
string
default:"0x4880bd4695a8e59dc527d124085749744b6c988e"
Address to check for Plasma deposits.
page
integer
default:"1"
Page number for pagination.
offset
integer
default:"100"
Number of records per page. Use the page parameter for subsequent records.
{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "hash": "0xf645deb2b6fbb8b76ccbcf4bde782e28d3520e8a30e9a568b9b8c526e2fd8434",
      "blockNumber": "51844560",
      "timeStamp": "1704181285",
      "from": "0x0000000000000000000000000000000000000000",
      "address": "0x4880bd4695a8e59dc527d124085749744b6c988e",
      "amount": "2341706540000000000",
      "tokenName": "Polygon Token",
      "symbol": "POL",
      "contractAddress": "0x0000000000000000000000000000000000001010",
      "divisor": "18"
    }
  ]
}