Retrieve logos directly using cURL or any HTTP client:Using cURL:
Copy
Ask AI
curl --request GET \ --url https://production-api.mobula.io/api/1/blockchains
Using Axios:
Copy
Ask AI
import axios from "axios";axios.get('https://production-api.mobula.io/api/1/blockchains').then(function (response) { console.log(response);}).catch(function (error) { console.log(error);})
2
Review the Response
To access the blockchain logo, use the URL specified under the logo key in the data. For additional details such as RPC endpoints, explorer links, and information on specific tokens, refer to the corresponding keys.