GET
/
api
/
account
/
history
/
{environment}
/
{index}
/
{accountId}
/
{mint}
curl --request GET \
  --url http://localhost:3000/api/account/history/{environment}/{index}/{accountId}/{mint}
[
  {
    "account": "<string>",
    "history": [
      {
        "signature": "<string>",
        "slot": 123,
        "err": "<string>",
        "memo": "<string>",
        "blockTime": 123
      }
    ]
  }
]

Path Parameters

environment
string
required
index
integer
required
accountId
string
required
mint
string
required

Query Parameters

commitment
enum<string>
required
Available options:
Confirmed,
Finalized,
Processed

Response

default - application/json

The response is of type object[].