Skip to main content
GET
/
2
/
wallet
/
pm
/
status
Get prediction market account status
curl --request GET \
  --url https://demo-api.mobula.io/api/2/wallet/pm/status
{
  "data": {
    "deployed": true,
    "safeAddress": "<string>",
    "usdcBalance": 123
  },
  "hostname": "<string>",
  "took": 123
}

Query Parameters

wallet
string
required
The wallet address (EOA) to check.

Response

data
object
Account status information.
hostname
string
Server node identifier.
took
number
Request processing time in milliseconds.

Usage Example

curl -X GET "https://api.mobula.io/api/2/wallet/pm/status?wallet=0xYourWalletAddress"

Example Response

{
  "data": {
    "deployed": true,
    "safeAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "usdcBalance": 250.5
  },
  "hostname": "node-xyz",
  "took": 42
}

Query Parameters

wallet
string
required

Response

200 - application/json

Account status

data
object
hostname
string
took
number