Skip to main content
POST
getLookupTablesByAuthority
curl --request POST \
  --url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getLookupTablesByAuthority",
  "params": [
    {
      "authority": "9aoUCn5J4sxhvYERCVwVnakPQxyXTHQVXe86CUJYxY8p",
      "limit": 100,
      "cursor": null,
      "mintsOnly": false,
      "includeDeactivated": false
    }
  ]
}
'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "lookupTables": [
      {
        "pubkey": "LUTPubkey1111111111111111111111111111111",
        "authority": "9aoUCn5J4sxhvYERCVwVnakPQxyXTHQVXe86CUJYxY8p",
        "deactivationSlot": 18446744073709552000,
        "addressCount": 12,
        "addresses": [
          "Account1pubkey111111111111111111111111111",
          "Account2pubkey222222222222222222222222222"
        ],
        "mints": [
          "Mint1pubkey11111111111111111111111111111111"
        ],
        "slot": 423867852
      }
    ],
    "nextCursor": "LUTPubkey1111111111111111111111111111111",
    "hasMore": false,
    "count": 1
  }
}
⚡ Powered by Solana Ridge DBReturns address lookup tables (LUTs) owned by a wallet authority. Use this to discover which LUTs a wallet controls, inspect their stored addresses, and check whether they are still active.Supports pagination via cursor, optional filtering to mint addresses only (mintsOnly), and inclusion of deactivated tables (includeDeactivated).
This method costs 1 credit per call.

Authorizations

api_key
string
query
required

Body

application/json
jsonrpc
enum<string>
default:2.0
required

The JSON-RPC protocol version.

Available options:
2.0
Example:

"2.0"

id
string
default:1
required

A unique identifier for the request.

Example:

"1"

method
enum<string>
default:getLookupTablesByAuthority
required

The name of the RPC method to invoke.

Available options:
getLookupTablesByAuthority
Example:

"getLookupTablesByAuthority"

params
object[]
required

Method parameters.

Required array length: 1 element

Response

Successful response.

jsonrpc
enum<string>
Available options:
2.0
id
string
result
object