> For the complete documentation index, see [llms.txt](https://docs.payram.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payram.com/api-integration/payments-api/fetch-tickers.md).

# Fetch Tickers

<figure><img src="/files/3esEMRs7Sps8AIZfgd1A" alt=""><figcaption></figcaption></figure>

***

## URL Details

<table><thead><tr><th width="157.99609375">Parameter</th><th>Description</th><th>Example</th></tr></thead><tbody><tr><td>BASE_URL</td><td>Your PayRam Site URL — find it under <strong>Settings → Site URL</strong> in your dashboard. Include the port if you installed on one.</td><td><code>https://pay.example.com</code></td></tr><tr><td>API Endpoint</td><td>Endpoint to fetch supported currencies and their live USD prices.</td><td><code>/api/v1/ticker</code></td></tr></tbody></table>

## Headers

{% hint style="info" %} <mark style="color:$primary;">**Note**</mark><mark style="color:$info;">: This is a public endpoint. No API key is required.</mark>
{% endhint %}

## 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

```bash
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"
  },
  ...
]
```

{% hint style="info" %} <mark style="color:$warning;">**Note :**</mark> <mark style="color:$success;">**Each object represents a supported token on PayRam with its blockchain code, token standard, and real-time price.**</mark>
{% endhint %}
