APIs & SDKs
Log In
APIs & SDKs

paymasterBalance

  • 🏦 Understanding paymasterBalance

    • paymasterBalance returns the USD balance (6 decimals) of the Paymaster associated with your projectId (projectUuid) and serverKey (projectKey). It takes no parameters other than the projectUuid and projectKey for authentication.

Query example

import Axios from "axios"; const projectUuid = "Your project uuid"; const projectKey = "Your project client key or server key"; const paymasterUrl = "https://paymaster.particle.network"; (async () => { const response = await Axios.post( paymasterUrl, { method: "pm_paymasterBalance", params: [], }, { params: { projectUuid, projectKey, }, } ); console.log(response.data); })();
Query Params
string
required
string
required
Body Params
string
required
Defaults to 2
integer
required
Defaults to 0
string
required
params
array
required
length ≤ 0
params*
Response

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