Get internal tx transfers
API Deprecation Notice
This API endpoint will be deprecated by the end of Q1 2025 as part of Skynet sunsetting. Please migrate to the Moralis alternative: Get native transactions by Wallet
GET/accounts/:address/internal_txs/transfers
Retrieve internal RON token transfers triggered by smart contract interactions (OpCode CALL) for a given address. https://docs.skymavis.com/ronin/skynet/guides/get-all-ron-transfers-via-internal-transactions-of-a-wallet-address
Request
Path Parameters
address stringrequired
Account address. Example: 0xf6fd5fca4bd769ba495b29b98dba5f2ecf4ceed3
Query Parameters
limit integer
Paging limit
cursor string
Paging cursor
Responses
- 200
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [ 
- ] 
result
object
items
object[]
transactionHash string
order integer
opcode string
type string
value string
input string
from string
to string
success boolean
error string
blockNumber integer
blockHash string
blockTime integer
paging
object
nextCursor string
{
  "result": {
    "items": [
      {
        "transactionHash": "string",
        "order": 0,
        "opcode": "string",
        "type": "string",
        "value": "string",
        "input": "string",
        "from": "string",
        "to": "string",
        "success": true,
        "error": "string",
        "blockNumber": 0,
        "blockHash": "string",
        "blockTime": 0
      }
    ],
    "paging": {
      "nextCursor": "string"
    }
  }
}
internal error
- application/json
- Schema
- Example (from schema)
Schema
errorCode integer
message string
{
  "errorCode": 0,
  "message": "string"
}
Loading...