Account search
/users/search
Search tracked accounts by display name or handle. Returns matching accounts ordered by relevance. Use q for the query string and limit (max 50) to cap results.
Parameters
Search query. For tokens this matches symbol, name, or contract address; for accounts it matches display name or handle.
Example:string
Maximum number of results to return (default 10, max 50).
Example:50
cURL Example
curl --get \
--url 'https://nebula-api.hiddensystems.ai/api/v1/public/users/search' \
--data-urlencode 'q=string' \
--header 'X-API-Key: YOUR_API_KEY'
Responses
Media type application/json
query
Normalized query string that was searched.
total
Number of accounts returned in this response.
users
array<object>
Matching accounts ordered by relevance.
users
Matching accounts ordered by relevance.
users[].author_id
Internal Nebula author identifier.
users[].avatar_url
URL of the account's avatar image.
users[].bot_score
Model score based on the quality of the account's smart-money followers.
users[].cohort
Cohort classification id for the account.
users[].display_name
Display name of the account.
users[].followers
Total follower count for the account.
users[].name
Account name.
users[].profile_url
Normalized query string that was searched.
users[].screen_name
Screen name or handle on the source platform.
users[].smart_followers_score
Model score based on the quality of the account's smart-money followers.
users[].smart_money_score
Model score based on the quality of the account's smart-money followers.
users[].source
Source platform for the account (e.g. twitter).
users[].source_user_id
Identifier for the account on the source platform.
users[].verified
Whether the account is verified on the source platform.
{
"query": "string",
"total": 0,
"users": [
{
"author_id": 0,
"avatar_url": "string",
"bot_score": 0,
"cohort": 0,
"display_name": "string",
"followers": 0,
"name": "string",
"profile_url": "string",
"screen_name": "string",
"smart_followers_score": 0,
"smart_money_score": 0,
"source": "string",
"source_user_id": "string",
"verified": false
}
]
}