GET
/
chain
/
{chain-id}
/
account
/
{account-address}
/
transactions
curl --request GET \
  --url https://evm.preview-api.modular.cloud/v1/chain/{chain-id}/account/{account-address}/transactions
{
  "result": {
    "transactions": [
      {
        "hash": "<string>",
        "blockNumber": "<string>"
      }
    ],
    "nextToken": "<string>"
  },
  "error": {
    "message": "<string>"
  }
}

Path Parameters

chain-id
string
required
account-address
string
required

Query Parameters

maxResults
integer

default is 30

nextToken
string

Response

200 - application/json
Successful response
result
object
error
object