APIs & SDKs
Log In
APIs & SDKs

isProjectUser

🏠 Understanding isProjectUser

  • isProjectUser returns a Boolean representing whether or not a specified user (their public address assumedly derived from social login) has interacted with or belongs to your project. It takes:

    • Chain - either solana or evm_chain.

    • Address - string.


Query example

const axios = require("axios"); (async () => { const response = await axios.post( "https://api.particle.network/server/rpc", { jsonrpc: "2.0", id: 0, method: "isProjectUser", params: ["evm_chain", "0x6D5fCEd0C74F22a1B145ef48B25527Ce9BF829bF"], }, { auth: { username: "Your Project Id", password: "Your Project Server Key", }, } ); console.log(response.data); })();
Body Params
string
Defaults to 2.0
integer
Defaults to 0
string
Defaults to isProjectUser
params
array of strings
params
Response

Language
Credentials
:
Click Try It! to start a request and see the response here! Or choose an example:
application/json