get https://api-market.particle.network/chains/
Query example
const Axios = require("axios");
const projectUuId = 'Your Project Id';
const projectKey = 'Your Project Client Or Server Key';
const chainId = 5; // Goerli
const baseUrl = 'https://api-market.particle.network';
const url = `${baseUrl}/chains/${chainId}`;
(async () => {
const response = await Axios.get(url, {
params: {
projectUuid,
projectKey,
page: 1,
limit: 10,
},
});
console.log(JSON.stringify(response.data));
})();