CompSuite API
v4
  • v4
  • v3
  • v2
  1. Events
CompSuite API
v4
  • v4
  • v3
  • v2
  • API Usage Guidelines
  • Authentication
  • Errors
  • Divisions
    • List all divisions
      GET
  • Groups
    • List all groups
      GET
    • Retrieve a group
      GET
    • Create a Group
      POST
    • Update a group
      POST
  • Seasons
    • List all seasons
      GET
  • Events
    • List all events
      GET
    • Retrieve an event
      GET
    • Create an event
      POST
    • Create a Competition
      POST
  • Performances
    • Add a performance
      POST
    • Delete a performance
      DELETE
  • Schedule
    • Retrieve Schedule for Competition
      GET
  • Scores
    • Retrieve Competition Scores
      GET
  1. Events

Retrieve an event

GET
/events/{eventId}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.competitionsuite.com/events/'
Response Response Example
200 - Result
{
    "id": 3782,
    "name": "2015 WGI Troy Percussion Regional",
    "location": "Troy, MI",
    "seasonId": 2278,
    "eventTypeId": 2,
    "eventType": "Prelims & Finals",
    "competitions": [
        {
            "id": 4306,
            "guid": "07eb6480-cf0c-4ca3-ab36-88ba45928c37",
            "name": "Prelims",
            "date": "2015-02-07T10:00:00.000Z",
            "standardScheduleUrl": "https://schedules.competitionsuite.com/60d34dd4-0450-46a9-b06e-c00d7d3fd316_standard.htm",
            "logisticalScheduleUrl": "https://schedules.competitionsuite.com/60d34dd4-0450-46a9-b06e-c00d7d3fd316_logistical.htm",
            "recapUrl": "https://recaps.competitionsuite.com/60d34dd4-0450-46a9-b06e-c00d7d3fd316.htm"
        },
        {
            "id": 4307,
            "guid": "6121b49e-a393-488c-ae5f-0b52525b4318",
            "name": "Finals",
            "date": "2015-02-07T18:00:00.000Z",
            "standardScheduleUrl": "https://schedules.competitionsuite.com/4dd17828-57cc-4ef3-8777-6641b9c474e9_standard.htm",
            "logisticalScheduleUrl": "https://schedules.competitionsuite.com/4dd17828-57cc-4ef3-8777-6641b9c474e9_logistical.htm",
            "recapUrl": "https://recaps.competitionsuite.com/4dd17828-57cc-4ef3-8777-6641b9c474e9.htm"
        }
    ]
}

Request

Authorization
OAuth 2.0
or
Path Params

Responses

🟢200OK
application/json
200
Body

🟠400Bad Request
Modified at 2025-07-31 14:01:39
Previous
List all events
Next
Create an event
Built with