NFT Market API

Get the real-time data

Base URL

https://api-market.particle.network

Authentication

Accessing the Market API requires passing the user's project information in query parameters.

For example:

const Axios = require("axios");

const chainId = 5; // Goerli Network
const projectUuId = 'Your Project Id';
const projectKey = 'Your Project Client Or Server Key';

(async () => {
    const response = await Axios.get(`https://api-market.particle.network/chains/${chainId}/contractAddress`, {
        params: {
            projectUuid,
            projectKey,
        },
    });

    console.log(JSON.stringify(response.data));
})();

API

Last updated