Quick Start
Last updated
{
"count": 20,
"plaques": [
{
"id": 1000,
"createdAt": "2023-03-28T15:06:27.483Z",
"updatedAt": "2023-03-29T10:11:25.086Z",
"deletedAt": null,
"name": "tpa-000",
"alphabetPart": "tpa",
"numberPart": "000",
"image": "https://cdn.stagemeta.world/palques/tpa-000.jpg",
"price": 0,
"currency": "ETH",
"marketplace": "stage",
"tokenId": null,
"mappedPlaqueId": null,
"contractAddress": "0x000000000000000000000000000000000000000",
"featured": true,
"description": "",
"standard": "ERC-1155",
"metadata": null,
"building_id": null,
"wallet_address": null,
"condition": "VIRGIN",
"assignAt": null,
"saleAt": null,
"featuredAt": "2023-03-28T15:06:27.481Z",
"mintedAt": null,
"status": "AVAILABLE",
"minted": false,
"token_id": null
}
],
}curl -X 'GET' \ 'https://api.stagemeta.world/plaques/featured' \ -H 'accept: */*'fetch('https://api.stagemeta.world/plaques/featured', {
method: 'GET',
headers: {
'accept': '*/*'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));