Get User
Retrieve user profile and trading statistics by wallet address.
GET
/api/users/:wallet
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| wallet | string | required | Wallet address (0x...) |
Response
Response
200 OK
{
"success": true,
"data": {
"wallet": "0x1234...abcd",
"username": "trader42",
"avatar_url": "/images/avatars/trader42.png",
"total_volume": 5420.00,
"total_pnl": 823.50,
"markets_traded": 23,
"win_rate": 0.68,
"rank": 12,
"joined_at": "2026-01-05T09:00:00.000Z"
}
}
Example
curl https://oddsforge.org/api/users/0x1234567890abcdef1234567890abcdef12345678
Check Username Availability
GET
/api/users/check-username/:username
curl https://oddsforge.org/api/users/check-username/trader42
OddsForge