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

List all events

GET
/events/
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.competitionsuite.com/events/'
Response Response Example
200 - Result
{
  "data": [
    {
      "id": 3782,
      "name": "2015 WGI Troy Percussion Regional",
      "location": "Troy, MI",
      "seasonId": 2278,
      "eventTypeId": 2,
      "eventType": "Prelims & Finals",
      "practice": false,
      "videoEnabled": true,
      "commentaryEnabled": true
    },
    {
      "id": 3748,
      "name": "2015 WGI Bakersfield CG Regional",
      "location": "Bakersfield, CA",
      "seasonId": 2278,
      "eventTypeId": 2,
      "eventType": "Prelims & Finals",
      "practice": false,
      "videoEnabled": true,
      "commentaryEnabled": true
    },
    {
      "id": 3749,
      "name": "2015  WGI Corning CG Regional",
      "location": "Corning, NY",
      "seasonId": 2278,
      "eventTypeId": 2,
      "eventType": "Prelims & Finals",
      "practice": false,
      "videoEnabled": true,
      "commentaryEnabled": true
    }
  ]
}

Request

Authorization
OAuth 2.0
or
Query Params

Responses

🟢200OK
application/json
200
Body

🟠400Bad Request
Modified at 2025-07-28 18:57:02
Previous
List all seasons
Next
Retrieve an event
Built with