⚙️
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

Stage Wallet Authentication API

The Stage Wallet Authentication API allows a user to sign in or sign in without any third-party wallet like meta mask, by signing up with this API we create a wallet on the eth network for you.

after calling this API you got an email with a verification code.

Buy Plaque API

POST https://api.stagemeta.dev/auth/stage-wallet

Request Body

Name
Type
Description

email

String

{
  "result": true
}

curl -X 'POST' \
  'https://api.stagemeta.dev/auth/stage-wallet' \
  -H 'accept: */*' \
  -H 'Content-Type: application/json' \
  -d '{
  "email": "johndoe@example.com"
}'
fetch('https://api.stagemeta.dev/auth/stage-wallet', {
  method: 'POST',
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  },
  body:{
    "email": "johndoe@example.com"
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error(error));
PreviousBuy Plaque APINextEmail Verification API

Last updated 2 years ago