🔄Fetch Tickers
In this section, you’ll learn how to fetch all supported tickers using the PayRam API, allowing you to display real-time token and blockchain options available for user payments.

URL Details
API Endpoint
Endpoint to create a new payment link.
/api/v1/ticker
Headers
API-Key
Your unique PayRam API key generated from your dashboard.
811b12035f0dfa8ffd62296df3c98b27
Content-Type
Format of the request data.
application/json
curl request
Before running the command, replace the placeholders with your actual details:
${BASE_URL} → Your PayRam server URL
<your_api_key> → Your PayRam API key
Replace the request body fields with real customer data
curl --location '${BASE_URL}/api/v1/ticker' \
--data ''curl response
You’ll receive a list of supported blockchain assets, each containing:
Blockchain info – e.g., ETH, BTC, TRX, BASE
Token details – contract address, precision, and standard
Live pricing – current USD value for each token
[
{
"blockchainCode": "TRX",
"currencyCode": "TRX",
"tokenAddress": "T9yD14Nj9j7xAB4dbGeiX9h8unkKHxuWwb",
"standard": "TRX",
"walletPrecision": 6,
"family": "TRX_Family",
"price": "0.2796"
},
...
]Last updated