How to get lowest price of an NFT by Markeplace
Prerequisitesβ
Before getting started, make sure you have the following ready:
- Node v.14+ or Python
- NPM/Yarn or Pip
Step 1: Setup Moralisβ
First register your Moralis account and get your Moralis API Key.
Once you have your Moralis API Key, install the Moralis SDK in your project.
- npm
- yarn
- pnpm
- pip
npm install moralis @moralisweb3/common-evm-utils
yarn add moralis @moralisweb3/common-evm-utils
pnpm add moralis @moralisweb3/common-evm-utils
pip install moralis
Step 2: Get All Transfers Of An NFTβ
In order to get lowest price of an NFT, Moralis provides you with an getNFTLowestPrice endpoint.
Here you'll need three parameters: address
, marketplace
, and chain
.
Once you have obtained the address
, marketplace
and chain
, you can copy the following code:
- index.js (JavaScript)
- index.ts (TypeScript)
- index.py (Python)
const Moralis = require("moralis").default;
const { EvmChain } = require("@moralisweb3/common-evm-utils");
const runApp = async () => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const address = "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D";
const chain = EvmChain.ETHEREUM;
const marketplace = "opensea";
const response = await Moralis.EvmApi.nft.getNFTLowestPrice({
address,
chain,
marketplace,
});
console.log(response.toJSON());
};
runApp();
import Moralis from "moralis";
import { EvmChain } from "@moralisweb3/common-evm-utils";
const runApp = async () => {
await Moralis.start({
apiKey: "YOUR_API_KEY",
// ...and any other configuration
});
const address = "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D";
const chain = EvmChain.ETHEREUM;
const marketplace = "opensea";
const response = await Moralis.EvmApi.nft.getNFTLowestPrice({
address,
chain,
marketplace,
});
console.log(response.toJSON());
};
runApp();
from moralis import evm_api
api_key = "YOUR_API_KEY"
params = {
"chain": "eth",
"marketplace": "opensea",
"address": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D"
}
result = evm_api.nft.get_nft_lowest_price(
api_key=api_key,
params=params,
)
print(result)
Step 3: Run the scriptβ
To run the script, enter the following command:
- Shell (JavaScript)
- Shell (TypeScript)
- Shell (Python)
node index.js
ts-node index.ts
python index.py
In your terminal, you should see the following JSON response:
{
"transaction_hash": "0x7f144f0ba4a412b8b683b126e10962754d80f1010531f57f425e499c23983c9a",
"transaction_index": "47",
"token_ids": [
"3644"
],
"seller_address": "0xdacc47d22370a3cc940160efbe62750c47900f44",
"buyer_address": "0x756dcf63d25ba456c492a892db61719e5861a872",
"token_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d",
"marketplace_address": "0x00000000000000adc04c56bf30ac9d3c0aaf14dc",
"price": "33460000000000000000",
"block_timestamp": "2023-07-23T13:58:47.000Z",
"block_number": "17756263",
"block_hash": "0x75706cd5532f12eaeeece29bbe926e2afd435fd6c9d71fc9c893094bd751dc14"
}
Congratulations π₯³ You just got lowest price of an NFT with just a few lines of code using the Moralis NFT API!
API Referenceβ
If you want to know more details on the endpoint and optional parameters, check out:
Supportβ
If you face any trouble following the tutorial, feel free to reach out to our community engineers in our Discord or Forum to get 24/7 developer support.