https://history.globalforce.io/api/nft
https://dev-history.globalforce.io/api/nft
getOrderById
by
(required, string, default: tid
): Filter by specific fields such as tid
, cid
, towner
, tcreator
, asset_id
, sell
, tstake
, tfreezetime
, tlifetime
tid
, cid
, towner
, tcreator
, asset_id
, sell
, tstake
, tfreezetime
, tlifetime
query
(required, string): Search query (e.g., nameaccount)limit
(required, integer): Limit number of results, min: 0, max: 100position
(required, integer): Position in pagination, min: 0sort
(required, string, default: desc
): Sorting directiondesc
, asc
sort_key
(optional, string): Sort by field (e.g., cid
, towner
, tcreator
, asset_id
, etc.)sort_value
(optional, string): Filter value used with sort_key
(e.g., testtestte44)asset
(optional, boolean): When true
, response will not contain base64 encoded imageapplication/json
NFTresult
getMarket
limit
(required, integer): Limit number of results, min: 0, max: 100position
(required, integer): Position in pagination, min: 0sort
(required, string, default: desc
): Sorting directiondesc
, asc
application/json
MARKETresult
total
(integer): Total count of NFTs, example: 18result
(array): List of NFT objectsNFTobject
total
(integer): Total count of collections, example: 18result
(array): List of market objectsMARKETobject
tid
(integer): Unique token ID, example: 977cid
(integer): Collection ID, example: 2tname
(string): Token name, example: Super Awesome Meme Tokencname
(string): Collection name (max: 128 characters), example: Simple Collectionscdesc
(string): Collection description (max: 1024 characters), example: Descr Collectionscowner
(string): Collection owner, example: testtestte44towner
(string): Token owner, example: testtestte44tcreator
(string): Token creator, example: testtestte44tcreatorfee
(integer): Creator fee percentage, example: 0turl
(string): URL in token description (optional), example: https://my-aswesome-token.comasset_id
(integer): Asset ID, example: 1021base64
(string): Base64 encoded image string, example: iVBORw0KGgoAAAANSUhEUgAAA9QAAANsell
(integer): Market flag: 1 if listed for sale, example: 0price
(string): Sale price, example: 1.0000 GFTorder_id
(integer): Order ID, example: 23token
(string): Token account, example: eosio.tokentstake
(integer): Stake flag: 1 if staked, example: 0tfreezetime
(integer): Freeze time in seconds, example: 0tlifetime
(integer): Token lifetime in seconds, example: 0idata
(string): Non-overwritable JSON string, example: {}mdata
(string): Overwritable JSON string, example: {}last_update
(integer): Token creation timestamp, example: 1694877432cid
(integer): Unique collection ID, example: 2anybody
(integer): Flag for public token creation: 1 if any user can create tokens, example: 0cname
(string): Collection name, example: Test collectioncocdescwner
(string): Collection owner, example: testtestte44cdesc
(string): Collection description, example: testtestte44last_update
(integer): Last update timestamp, example: 1694877432NFTresult
){
"total": 18,
"result": [
{
"tid": 977,
"cid": 2,
"tname": "Meme NFT Card",
"cname": "Simple Collections",
"cdesc": "Descr Collections",
"cowner": "testtestte44",
"towner": "testtestte44",
"tcreator": "testtestte44",
"tcreatorfee": 0,
"turl": "https://your-meme.com",
"asset_id": 1021,
"base64": "iVBORw0KGgoAAAANSUhEUgAAA9QAAAN",
"sell": 0,
"price": "1.0000 GFT",
"order_id": 23,
"token": "eosio.token",
"tstake": 0,
"tfreezetime": 0,
"tlifetime": 0,
"idata": "{}",
"mdata": "{}",
"last_update": 1694877432
}
]
}
MARKETresult
){
"total": 18,
"result": [
{
"cid": 2,
"anybody": 0,
"cname": "Test colletion",
"cocdescwner": "testtestte44",
"cdesc": "testtestte44",
"last_update": 1694877432
}
]
}
- **Production:** `https://history.globalforce.io/api/nft` - **Development:** `https://dev-history.globalforce.io/api/nft` - **Tags:** NFT search - **Summary:**