Staying updated with the latest created pairs on various exchanges can provide a critical edge in market analysis and trading strategies.
Mobula API delivers precise and immediate data on newly created trading pairs, enabling traders and developers to tap into new market opportunities as they emerge. This guide details the steps to query data for newly created pairs.
You can call Mobula API directly from your terminal using cURL or any HTTP client.Using cURL:
Copy
Ask AI
curl --request GET \--url 'https://production-api.mobula.io/api/1/market/query/token?sortBy=listed_at&sortOrder=desc&blockchain=Base'
Using Axios:
Copy
Ask AI
import axios from "axios";axios.get('https://production-api.mobula.io/api/1/market/query/token?sortBy=listed_at&sortOrder=desc&blockchain=Base').then(function (response) { console.log(response);}).catch(function (error) { console.log(error);})
2
Get your data
The API will return a comprehensive response that includes details on trading pairs, featuring each token’s address and detailed price token statistics.