Solana Enhanced RPC
enhancedGetTokensAndNFTs
Learn how to use the enhancedGetTokensAndNFTs JSON-RPC method.
POST
/
#enhancedGetTokensAndNFTs
Contextualizing enhancedGetTokensAndNFTs
enhancedGetTokensAndNFTs
, like its EVM counterpart,getTokensAndNFTs
, retrieves a detailed list of tokens and NFTs that belong to a specific address. It takes:address
- a base58-encoded string.- Object, optional:
parseMetadataUri
- Boolean (false
by default).
Query example
JavaScript
const axios = require('axios');
(async () => {
const response = await axios.post('https://rpc.particle.network/solana', {
chainId: 103,
jsonrpc: '2.0',
id: 0,
method: 'enhancedGetTokensAndNFTs',
params: ['6XU36wCxWobLx5Rtsb58kmgAJKVYmMVqy4SHXxENAyAe', {
parseMetadataUri: true,
}],
}, {
auth: {
username: 'Your Project Id',
password: 'Your Project Server Key',
}
});
console.log(response.data);
})();
Authorizations
Authorization
string
headerrequiredBasic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Body
application/json
jsonrpc
string
default: 2.0requiredVersion of the JSON-RPC protocol, should be 2.0.
id
integer
default: 1requiredThe request identifier.
chainId
integer
requiredThe blockchain chain ID.
method
enum<string>
requiredAPI method being called.
Available options:
enhancedGetTokensAndNFTs
params
object[]
requiredParameters for getting tokens and NFTs.
Response
200 - application/json
jsonrpc
string
default: 2.0requiredVersion of the JSON-RPC protocol, should be 2.0.
id
integer
default: 1requiredThe request identifier.
chainId
integer
requiredThe blockchain chain ID.
result
object
requiredTokens and NFTs details.
Was this page helpful?