Token gated

advance condition

A user-defined interface verifies a user’s room access permission. The parameter is the wallet address list. If the authentication passes, the http status code 200 is returned. Otherwise, the authentication fails

POST Customize the API address

Request body example

{
 "wallet_address_list":[
     "0xdbb167FE8DF59A431e89B49fa1554AEB04defdDA",
     "0x823A4220d98e98F91128A0B3E0A0e801160c0D3f"
 ]
}

Response http status code == 200 Pass the verification

Curl example

curl -X POST \
  https://XXXXXX \
  -H 'Content-Type: application/json' \
  -d '{"wallet_address_list":["0xdbb167FE8DF59A431e89B49fa1554AEB04defdDA","0x823A4220d98e98F91128A0B3E0A0e801160c0D3f"]}'