⚙️
API Docs
  • Welcome!
  • Quick Start
  • Reference
    • API Reference
      • Plaque Lookup API
      • Plaques Prepare API
      • Owner Username API
      • Featured Plaques API
      • Latest contract API
      • Plaques List API
      • Buy Plaque API
      • Stage Wallet Authentication API
      • Email Verification API
      • Request For Private Key API
      • Private Key API
      • Orders Statistics API
      • User Profile API
    • Blockchain Smart-Contract
      • Plaque Price Method
      • Check mintTranfer Method
      • MintTransfer method
      • Token Owners Method
Powered by GitBook
On this page
  1. Reference
  2. API Reference

Owner Username API

The Owner Username API is used to retrieve the username of the owner of a particular plaque.

Owner Username API

GET https://api.stagemeta.dev/plaques/owner-username

Query Parameters

Name
Type
Description

name

[String]

plaque names

{
  "image": "https://cdn.stagemeta.dev/palques/TPA-000.jpg",
  "metadata": "https://api.stagemeta.world/plaques/tpa-000/metadata.json",
  "price": "57589090322729260",
  "priceUsdt": "102.598996",
  "method": "mintTransfer",
  "networkEnergyPercent": "50",
  "networkEnergyEth": "0.02879454516136463",
  "networkEnergyUsdt": "51.299498",
  "canGetDeltaEnergy": false
}

curl -X 'GET' \
  'https://api.stagemeta.dev/plaques/owner-username?name=nnn-000' \
  -H 'accept: */*'
fetch('https://api.stagemeta.dev/plaques/owner-username?name=nnn-000', {
  headers: {
    'accept': '*/*'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error))
PreviousPlaques Prepare APINextFeatured Plaques API

Last updated 2 years ago