Get Token Price
Integrate seamlessly with CoinVera’s REST endpoints by authenticating with your x-api-key, either as a query parameter or in the request header.
Authentication
Query Parameter Append your API key to the URL:
HTTP Header Include the header in your request:
Single-Token Price Requests
Replace <TOKEN_MINT>
and <YOUR_API_KEY>
with your token’s mint address and your CoinVera API key.
Auto-Detect (Low-Latency)
GET https://api.coinvera.io/api/v1/price?ca=<TOKEN_MINT>&x-api-key=<YOUR_API_KEY>
PumpFun
GET https://api.coinvera.io/api/v1/pumpfun?ca=<TOKEN_MINT>&x-api-key=<YOUR_API_KEY>
Meteora
GET https://api.coinvera.io/api/v1/meteora?ca=<TOKEN_MINT>&x-api-key=<YOUR_API_KEY>
Raydium (All Pools)
GET https://api.coinvera.io/api/v1/raydium?ca=<TOKEN_MINT>&x-api-key=<YOUR_API_KEY>
Moonshot
GET https://api.coinvera.io/api/v1/moonshot?ca=<TOKEN_MINT>&x-api-key=<YOUR_API_KEY>
Using HTTP Headers
(Swap /price
for /pumpfun
, /raydium
, etc., as needed.)
Multi-Token Price Requests
Fetch prices for multiple tokens in one call by passing a comma-separated list of mint addresses:
Code Examples
Fetch a single token’s price per request—see the code examples below.
Example Response
Fetch multiple tokens’ prices in a single request—example below.
Example Response
Tip: Experiment with different endpoints to find the lowest-latency feed for your use case. If you have questions, see our API Reference or reach out on our community channels.
Last updated