Competier
  1. result
Competier
  • api-key
    • Creates and returns a new api key, invalidating the previous one.
      POST
  • ladder
    • Adds a ladder to an account.
      POST
    • Deletes a ladder from an account, including all its entries, ratings and results.
      DELETE
    • Gets ladders of an account.
      GET
  • ladder-entry
    • Adds a self-managed entry to a ladder.
      POST
    • Deletes a ladder-entry from a ladder, including all its ratings and results.
      DELETE
    • Gets ladder entries.
      GET
  • result
    • Adds a game result for a played game.
      POST
    • Deletes a game result by rolling it back, reverting rating changes.
      DELETE
    • Gets game results.
      GET
  • invite
    • Adds an invite.
      POST
    • Accepts an invite.
      PUT
    • Deletes an invite.
      DELETE
    • Gets invites.
      GET
  • account
    • Updates account data.
      PATCH
  • credit
    • Fetches credit info.
      GET
  • matchmaking
  • bulk
  1. result

Gets game results.

GET
/v1/results
Gets game results. By default, results for all ladders that the querying user has participated in are returned.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.competier.net/v1/results'

Responses

🟢200OK
application/json
Body

Example
[
    {
        "id": 0,
        "ladderId": 0,
        "tournamentId": 0,
        "ladderEntryIds": [
            123,
            42,
            13,
            7
        ],
        "entryNames": [
            "Alice",
            "Bob",
            "Charlie",
            "Dave"
        ],
        "entryTeams": [
            1,
            3,
            2,
            2
        ],
        "finishPositions": [
            1,
            2,
            3,
            3
        ],
        "oldRatings": [
            1500,
            1500,
            1500,
            1800
        ],
        "ratingChanges": [
            29,
            3,
            -12,
            -20
        ],
        "reliabilityDeviationChanges": [
            123,
            123,
            123,
            123
        ],
        "volatilityChanges": [
            0
        ],
        "data": ""
    }
]
🟠400Bad request
🟠401Unauthorized
🟠429Too Many Requests
Modified at 2024-04-09 16:58:35
Previous
Deletes a game result by rolling it back, reverting rating changes.
Next
Adds an invite.
Built with