Get <Listed NFT List (My List)> Interface

Obtain the user's corresponding listed NFT list on the marketplace through the user's wallet address

Request Address: /api/v2/meta/getUserOrders

Request Method: GET

Request Parameters:

Field Name
Field Description
Type
Notes

owner

User's Wallet Address

string

keyWords

Search Key Words

string

Request example:

https://api.paths.finance/api/v2/meta/getUserOrders?owner=0x76336D2903E8F6d62Cc3F5d05283108e3D2785e0

Output example:

{
	"resCode": "100",
	"resMsg": "Success",
	"data": [
		{
			"order": {
				"item": {},
				"contractAddress": "0x22c1f6050e56d2876009903609a2cc3fef83b415",
				"tokenId": "1560218",
				"price": "95000000000000000",
				"paymentTokenAddress": "0x0000000000000000000000000000000000000000",
				"paymentTokenDecimals": 18,
				"paymentTokenUrl": "https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg",
				"paymentTokenSymbol": "ETH",
				"paymentETHExchangeRate": "1.000000000000000",
				"paymentUSDExchangeRate": "2047.190000000000055000",
				"ethPrice": "0.0950",
				"usdPrice": "194.4831",
				"platform_id": "386405378620468200"
			},
			"listPrice": "0.0950",
			"listPriceUsd": "194.4831",
			"floorPrice": 0.015,
			"floorPriceUsd": "30.6313",
			"profitPrice": "0.0950",
			"profitPriceUsd": "193.9985",
			"marketplace": {
				"platformId": "386405378620468200",
				"name": "OpenSea",
				"logoUrl": "https://opensea.io/static/images/logos/opensea.svg",
				"feeRate": 0.025,
				"paymentInfos": {
					"tokenAddress": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
					"tokenDecimals": 18,
					"tokenUrl": "https://openseauserdata.com/files/6f8e2979d428180222796ff4a33ab929.svg"
				}
			}
		}
	]
}

Last updated