For the complete documentation index, see llms.txt. This page is also available as Markdown.

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));

Last updated