POST
/
program
/
accounts
Program Accounts
curl --request POST \
  --url https://arch-mainnet.gomaestro-api.org/v0/rpc/program/accounts \
  --header 'Content-Type: application/json' \
  --header 'api-key: <api-key>' \
  --data '{
  "filters": [
    {
      "DataContent": {
        "bytes": [
          123
        ],
        "offset": 123
      },
      "DataSize": 123
    }
  ],
  "program_id": [
    123
  ]
}'
{
  "data": [
    {
      "account": {
        "data": [
          123
        ],
        "is_executable": true,
        "owner": [
          123
        ],
        "utxo": "<string>"
      },
      "pubkey": [
        123
      ]
    }
  ],
  "last_updated": {
    "block_hash": "<string>",
    "block_height": 123
  }
}

Authorizations

api-key
string
header
required

Project API Key

Body

application/json

Program accounts request

The body is of type object.

Response

202
application/json

OK

The response is of type object.