Menu
Developer Portal LogoDeveloper Portal
DocsSchemaAPI ExplorerHelpBlogUsers
Developer Portal LogoDeveloper Portal
  • Docs
  • Schema
  • API Explorer
  • Help
  • Blog
  • Users
  • Getting Started
    • Welcome
    • Join our Discord
    • Glossary
    • Intro to GraphQL
    • Authentication
    • Testing your Requests
    • Sending Requests
    • Rate Limits
    • Benefits of GraphQL
  • Query Examples
    • Get Event
    • Event Standings
    • Event Entrants
    • Events in Tournament
    • Entrants within a Tournament
    • League Schedule
    • League Standings
    • Sets in Event
    • Sets in Phase
    • Sets in Phase Group
    • Sets at Stations
    • Set Score
    • Sets by Player
    • Stream Queue
    • Set Entrants
    • Phase Groups in Phase
    • Phase Seeds
    • Pool Seeds
    • Attendee Counts
    • Tournaments by Location
    • Tournaments by Videogame
    • Tournaments by Owner
    • Attendees by Sponsor/Org
    • Get Game ID from Videogame Name
    • Shop Info
  • Mutation Examples
    • Report Set
  • Widgets & Embeds
    • Embedded Registration
  • Full Examples
    • Update Phase Seeding
    • Resolve Schedule Conflicts
    • Randomize Phase Seeding
  • OAuth
    • OAuth Overview
    • OAuth Scopes
    • Example OAuth Flow

Event Entrants

In this request, we will query for the entrants in a given event. For my example, I'm using the Ultimate Singles event at Genesis 6. This is a paginated query- I chose a small perPage value for the sake of space.

#Example

  • Request
  • Response
query EventEntrants($eventId: ID!, $page: Int!, $perPage: Int!) {
event(id: $eventId) {
id
name
entrants(query: {
page: $page
perPage: $perPage
}) {
pageInfo {
total
totalPages
}
nodes {
id
participants {
id
gamerTag
}
}
}
}
},
{
"eventId": 121970,
"page": 1,
"perPage": 2
}
Edit this page
Previous

« Event Standings

Next

Events in Tournament »

  • Example

Docs

  • Getting Started
  • Example Usage
  • API Explorer
  • Projects

start.gg

  • Home
  • Developer Settings

Community

  • Discord
  • Twitter
  • GitHub
start.gg
Copyright © 2025 start.gg