GET
/
clob
/
users
/
{address}
Get User Profile
curl --request GET \
  --url https://integrated-api.testnet.muchfi.xyz/api/clob/users/{address}
{
  "address": "<string>",
  "balances": [
    {}
  ],
  "orders": [
    {
      "transactionId": "<string>",
      "poolId": "<string>",
      "user": "<string>",
      "side": "BUY",
      "price": "<string>",
      "size": "<string>",
      "filledSize": "<string>",
      "status": "<string>",
      "timestamp": 123
    }
  ],
  "positions": [
    {}
  ]
}

Path Parameters

address
string
required

User wallet address

Response

200 - application/json

User profile

address
string
balances
object[]
orders
object[]
positions
object[]