Tokens RPC Method
The jup_Tokens
RPC method retrieves a list of tokens that are available for use within the platform. The response returns an array of token identifiers (mint addresses) that can be used in various operations such as swaps and transfers.
Endpoint: https://solana-mainnet.backpac.xyz/{YOUR_API_KEY}
Method: POST
Request Parameters
The request parameters are included in the params
property of the RPC request body. Below is the interface definition and detailed description of each parameter.
Request Interface:
This method does not require any input parameters.
Example Request
json
{
"method": "jup_Tokens",
"jsonrpc": "2.0",
"id": 1,
"params": {}
}
Response Interface:
The response contains an array of strings, where each string represents a unique token identifier (mint address) recognized by the platform. These token identifiers can be used in subsequent requests for swaps, transfers, and other operations involving tokens.
Example Response
json
{
"jsonrpc": "2.0",
"id": 1,
"result": [
"So11111111111111111111111111111111111111112",
"TokenAAddress1234567890abcdef",
"TokenBAddress0987654321abcdef"
]
}