Get Token Price - Relay
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request GET \
--url https://api.relay.link/currencies/token/price
JavaScript
const options = {method: 'GET'};
fetch('https://api.relay.link/currencies/token/price', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
Python
import requests
url = "https://api.relay.link/currencies/token/price"
response = requests.get(url)
print(response.text)
Status Codes
- 200
- 400
Response Examples
{
"price": 123
}
{
"error": "<string>"
}
Headers
x-api-key- Type: string
- Description: Optional API key for authentication and higher rate limits.
Query Parameters
address- Type: string
- Required: Yes
- Description: Token address to get price for
chainId- Type: number
- Required: Yes
- Description: Chain ID of the token
Response
- 200
- Content-Type: application/json
- Description: Default Response
- Response Example:
{ "price": 123 }
- **Error Response Example:**
```json
{
"error": "<string>"
}