Search for players in the RaidHub database by Bungie name or platform display name
curl --request GET \
--url https://api.example.com/player/search{
"params": {
"count": 123,
"query": "<string>"
},
"results": [
{
"membershipId": "<string>",
"membershipType": 123,
"iconPath": "<string>",
"displayName": "<string>",
"bungieGlobalDisplayName": "<string>",
"bungieGlobalDisplayNameCode": "<string>",
"lastSeen": "<string>",
"isPrivate": true,
"cheatLevel": 123
}
],
"QueryValidationError": {
"issues": [
{}
]
}
}Search for players in the RaidHub database by Bungie name or platform display name. Players who have not attempted a raid may not appear in the search results. Results are ordered by a combination of the number of raid completions and last played date.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Raid-Hub/API/llms.txt
Use this file to discover all available pages before exploring further.
-1: All platforms1: Xbox2: PlayStation3: Steam4: Blizzard (deprecated)5: Stadia (deprecated)6: Epic Games Storefalse to search by platform-specific display name instead.Show PlayerInfo
0: None1: Suspicious2: Moderate3: Extreme4: Blacklistedcurl -X GET "https://api.raidhub.io/player/search?query=Newo&count=10" \
-H "X-API-Key: your_api_key_here"
{
"minted": "2026-03-03T12:34:56.789Z",
"success": true,
"response": {
"params": {
"count": 10,
"query": "Newo"
},
"results": [
{
"membershipId": "4611686018488107374",
"membershipType": 3,
"iconPath": "/common/destiny2_content/icons/93844c8b76ea80683a880479e3506980.jpg",
"displayName": "xx_newo_xx",
"bungieGlobalDisplayName": "Newo",
"bungieGlobalDisplayNameCode": "9010",
"lastSeen": "2021-05-01T00:00:00.000Z",
"isPrivate": false,
"cheatLevel": 0
}
]
}
}
Show error
{
"minted": "2026-03-03T12:34:56.789Z",
"success": false,
"code": "QueryValidationError",
"error": {
"issues": [
{
"code": "too_small",
"message": "String must contain at least 1 character(s)",
"path": ["query"]
}
]
}
}
curl --request GET \
--url https://api.example.com/player/search{
"params": {
"count": 123,
"query": "<string>"
},
"results": [
{
"membershipId": "<string>",
"membershipType": 123,
"iconPath": "<string>",
"displayName": "<string>",
"bungieGlobalDisplayName": "<string>",
"bungieGlobalDisplayNameCode": "<string>",
"lastSeen": "<string>",
"isPrivate": true,
"cheatLevel": 123
}
],
"QueryValidationError": {
"issues": [
{}
]
}
}