Skip to main content
POST
getLookupTablesByMint
curl --request POST \
  --url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "getLookupTablesByMint",
  "params": [
    {
      "mint": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "limit": 100
    }
  ]
}
'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "lookupTables": [
      {
        "pubkey": "LUTPubkey1111111111111111111111111111111",
        "authority": "9aoUCn5J4sxhvYERCVwVnakPQxyXTHQVXe86CUJYxY8p",
        "deactivationSlot": 18446744073709552000,
        "addressCount": 256,
        "addresses": [
          "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        ],
        "mints": [
          "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        ],
        "slot": 423867852,
        "addressIndex": 42,
        "matchedAccounts": [
          "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
        ],
        "matchedAddressIndices": [
          42
        ],
        "estimatedBytesSaved": 31
      }
    ],
    "nextCursor": null,
    "hasMore": false,
    "count": 1
  }
}
⚡ Powered by Solana Ridge DBFind address lookup tables that contain a specific token mint. This is an alias of getLookupTablesByAccount — pass the mint address via the mint parameter instead of account. Response shape is identical.
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:getLookupTablesByMint
required

The name of the RPC method to invoke.

Available options:
getLookupTablesByMint
Example:

"getLookupTablesByMint"

params
object[]
required

Method parameters.

Required array length: 1 element

Response

Successful response.

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