Search Prediction Market Users
GET
https://api.unusualwhales.com/api/predictions/search-users
Request
Security:
Bearer Auth
Authorization: Bearer <token>
Query Parameters
q
string
required
Responses
200 422 500Response Body 200 OK
address
string
Example:
0x5140e6529f2108469c9386ad5acd7acb8cddae0c
name
string
Display name, or an empty string when matched purely by address.
Example:
whale_watcher
Try It
GET
Query Parameters
Request Sample
curl -X GET "https://api.unusualwhales.com/api/predictions/search-users?q=VALUE" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Accept: application/json"
Response Example
200
{
"data": [
{
"address": "0x5140e6529f2108469c9386ad5acd7acb8cddae0c",
"name": "whale_watcher"
}
]
}