Skip to content

Player Explorer

Player Explorer lets you search your player base and inspect individual player data: activity history, purchases, sessions, and progression.

  1. Go to Players > Player Explorer
  2. Enter a search term:
    • Player ID: player123
    • Email: user@example.com (if linked)
    • Username: Adventurer42
  3. Results appear with badges:
    • VIP: High spender
    • New: <7 days old
    • Inactive: No activity >30 days

Click a player to see:

StatShows
Player IDUnique ID
JoinedAccount creation date
Last SeenLast activity timestamp
SessionsTotal play sessions
Total PlaytimeCumulative playtime
Lifetime ValueTotal revenue from player

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.

Table of all sessions with:

  • Date: Session start
  • Duration: Play time
  • Events: Count of events
  • Progression: Levels completed, items earned

List of all transactions:

  • Product ID
  • Price
  • Date
  • Refunded? (Yes/No)

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

View all custom properties assigned to this player:

# Set properties via SDK
QuestData.set_player_properties({
"preferred_difficulty": "hard",
"lang": "de",
"playstyle": "aggressive"
})

In Player Explorer, these appear in the Properties panel for easy inspection.

Select multiple players to:

  • Add to Segment: Tag for targeting
  • Send Message: In-game notification
  • Reset Stats: Clear progress (testing)
Terminal window
# Search players
curl "https://api.questdata.io/v1/players?search=player123&limit=10" \
-H "x-game-api-key: YOUR_API_KEY"
# Get player detail
curl "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 }
]
}