Find raid instances for a player with advanced filtering options
curl --request GET \
--url https://api.example.com/player/{membershipId}/instances{
"instances": [
{
"instanceId": "<string>",
"hash": 123,
"completed": true,
"flawless": true,
"fresh": true,
"playerCount": 123,
"skullHashes": [
{}
],
"score": 123,
"dateStarted": "<string>",
"dateCompleted": "<string>",
"season": 123,
"duration": 123,
"platformType": 123,
"activityId": 123,
"versionId": 123,
"isDayOne": true,
"isContest": true,
"isWeekOne": true,
"isBlacklisted": true,
"players": [
{
"membershipId": "<string>",
"bungieGlobalDisplayName": "<string>",
"bungieGlobalDisplayNameCode": "<string>",
"membershipType": 123,
"iconPath": "<string>",
"lastSeen": "<string>",
"isPrivate": true,
"cheatLevel": 123
}
]
}
]
}Find a set of instances based on query parameters with advanced filtering capabilities. This endpoint is useful for finding specific types of completions or analyzing player performance.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.
4611686018467890123,4611686018467890456true: Only completed runsfalse: Only incomplete runstrue: Only fresh runsfalse: Only checkpoint runstrue: Only flawless runsfalse: Only non-flawless runsShow InstanceWithPlayers
Show PlayerInfo
curl -X GET "https://api.raidhub.io/player/4611686018488107374/instances?playerCount=1&flawless=true&completed=true" \
-H "X-API-Key: your_api_key_here" \
-H "Authorization: Bearer your_token_here"
curl -X GET "https://api.raidhub.io/player/4611686018488107374/instances?membershipIds=4611686018467890123,4611686018467890456" \
-H "X-API-Key: your_api_key_here" \
-H "Authorization: Bearer your_token_here"
curl -X GET "https://api.raidhub.io/player/4611686018488107374/instances?activityId=9&completed=true&maxDurationSeconds=1800" \
-H "X-API-Key: your_api_key_here" \
-H "Authorization: Bearer your_token_here"
{
"minted": "2026-03-03T12:34:56.789Z",
"success": true,
"response": [
{
"instanceId": "12345678901234567",
"hash": 3881495763,
"completed": true,
"flawless": true,
"fresh": true,
"playerCount": 1,
"skullHashes": [],
"score": 0,
"dateStarted": "2021-05-01T18:00:00.000Z",
"dateCompleted": "2021-05-01T20:15:00.000Z",
"season": 14,
"duration": 8100,
"platformType": 3,
"activityId": 9,
"versionId": 1,
"isDayOne": false,
"isContest": false,
"isWeekOne": false,
"isBlacklisted": false,
"players": [
{
"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
}
]
}
]
}
{
"minted": "2026-03-03T12:34:56.789Z",
"success": false,
"code": "PlayerNotFoundError",
"error": {
"membershipId": "4611686018488107374"
}
}
{
"minted": "2026-03-03T12:34:56.789Z",
"success": false,
"code": "PlayerProtectedResourceError",
"error": {
"message": "You do not have permission to query on this player's instances",
"membershipId": "4611686018488107374"
}
}
completed=true&maxPlayerCount=3playerCount=1playerCount=3&flawless=truecompleted=true&maxDurationSeconds=3600minDate=2026-01-01T00:00:00.000ZmembershipIds=player1,player2,player3curl --request GET \
--url https://api.example.com/player/{membershipId}/instances{
"instances": [
{
"instanceId": "<string>",
"hash": 123,
"completed": true,
"flawless": true,
"fresh": true,
"playerCount": 123,
"skullHashes": [
{}
],
"score": 123,
"dateStarted": "<string>",
"dateCompleted": "<string>",
"season": 123,
"duration": 123,
"platformType": 123,
"activityId": 123,
"versionId": 123,
"isDayOne": true,
"isContest": true,
"isWeekOne": true,
"isBlacklisted": true,
"players": [
{
"membershipId": "<string>",
"bungieGlobalDisplayName": "<string>",
"bungieGlobalDisplayNameCode": "<string>",
"membershipType": 123,
"iconPath": "<string>",
"lastSeen": "<string>",
"isPrivate": true,
"cheatLevel": 123
}
]
}
]
}