Player Explorer
Player Explorer lets you search your player base and inspect individual player data: activity history, purchases, sessions, and progression.
Searching Players
Section titled “Searching Players”- Go to Players > Player Explorer
- Enter a search term:
- Player ID:
player123 - Email:
user@example.com(if linked) - Username:
Adventurer42
- Player ID:
- Results appear with badges:
- VIP: High spender
- New: <7 days old
- Inactive: No activity >30 days
Player Detail View
Section titled “Player Detail View”Click a player to see:
Summary Stats
Section titled “Summary Stats”| Stat | Shows |
|---|---|
| Player ID | Unique ID |
| Joined | Account creation date |
| Last Seen | Last activity timestamp |
| Sessions | Total play sessions |
| Total Playtime | Cumulative playtime |
| Lifetime Value | Total revenue from player |
Event Timeline
Section titled “Event Timeline”Chronological list of all events:
- 2026-04-06 10:30:
level_complete(level: 5) - 2026-04-06 10:15:
purchase_completed($4.99) - 2026-04-06 09:45:
game_start(duration: 45 min)
Click an event to see full payload.
Session Breakdown
Section titled “Session Breakdown”Table of all sessions with:
- Date: Session start
- Duration: Play time
- Events: Count of events
- Progression: Levels completed, items earned
Purchases
Section titled “Purchases”List of all transactions:
- Product ID
- Price
- Date
- Refunded? (Yes/No)
Sorting & Filtering
Section titled “Sorting & Filtering”Sort by:
- Last Seen: Recently active first
- Lifetime Value: Highest spenders first
- Join Date: Newest players first
- Sessions: Most playtime first
Filter by:
- Status: Active, Inactive, Churned
- Spending: Free, Spender, Whale
- Cohort: Registration week
- Tag: Custom player segments
Properties Panel
Section titled “Properties Panel”View all custom properties assigned to this player:
# Set properties via SDKQuestData.set_player_properties({ "preferred_difficulty": "hard", "lang": "de", "playstyle": "aggressive"})In Player Explorer, these appear in the Properties panel for easy inspection.
Bulk Actions
Section titled “Bulk Actions”Select multiple players to:
- Add to Segment: Tag for targeting
- Send Message: In-game notification
- Reset Stats: Clear progress (testing)
API Reference
Section titled “API Reference”# Search playerscurl "https://api.questdata.io/v1/players?search=player123&limit=10" \ -H "x-game-api-key: YOUR_API_KEY"
# Get player detailcurl "https://api.questdata.io/v1/players/player123" \ -H "x-game-api-key: YOUR_API_KEY"Response:
{ "player_id": "player123", "joined_at": "2025-12-01T00:00:00Z", "last_seen": "2026-04-06T10:30:00Z", "session_count": 45, "lifetime_playtime_seconds": 54000, "lifetime_value": 49.99, "events": [ { "name": "level_complete", "timestamp": "2026-04-06T10:30:00Z", "level": 5 } ]}