The rapidly changing cryptocurrency market makes monitoring newly listed tokens crucial.
Mobula API offers a direct way to obtain real-time, detailed information about tokens immediately upon their market introduction. This guide outlines how to access data on newly listed tokens.
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 including the token’s blockchain, address, creation date, pair type, transaction statistics, and details of the tokens forming trading pairs.