Skip to main content

Introduction

Welcome to the documentation page of the Wise Old Man REST API (v2). This API is Open Source and is in continuous development.

You can contribute to this API on GitHub:
https://github.com/wise-old-man/wise-old-man

Or reach out to us on our Discord:
https://wiseoldman.net/discord

Do you have a suggestion or a bug to report? Please use GitHub issues for that, through the link below
https://github.com/wise-old-man/wise-old-man/issues


info

If you are interested in using our API for your apps, consider saying hi on our discord so we can assign you a API Consumer role which we use to ping users when something in the API has changed.

Also consider requesting an API Key for your app, more on that later on this page.


About the API​

Our REST API uses standard HTTP response codes and verbs, and mostly supports JSON-encoded responses, with a few exceptions for endpoints that return CSV, that are meant to be consumed by applications like Google Sheets and Microsoft Excel.

This documentation website will provide examples for each request using cURL and our own JavaScript/TypeScript client library (highly recommended if you are using any of those languages). There could be more client libraries built for other languages in the future, but it is not our main priority right now. Please do contact us if you are interested in developing one for any other languages.

3rd party libraries​

LibraryLanguageMaintainerLinks
wom.pyPython3@jonxslaysDocs | Repo
caution

Support for 3rd party libraries may be limited depending on the availability of the maintainer.

For the most part you can receive help in the Wise Old Man discord server. Alternatively, feel free to create an issue on the associated github repository or inquire with the maintainer of the library directly.

Getting started​

Base URL​

https://api.wiseoldman.net/v2

All routes described in this documentation website are meant to be used with this base URL as a prefix.

Example:
/competitions should be accessed as https://api.wiseoldman.net/v2/competitions

Rate Limits & API Keys​

There is a maximum of 100 requests per 5 minutes, however, this can be increased (to 500) if you register for an API key.

API Keys help us keep track of who is actually using our API, and what resources they need the most, and can be really helpful for us to know how to contact our API consumers.

If you want an API key, or just want to be notified of API changes, just send us a message on our discord and we'll help you.

Alternatively, you can add a user agent header to your requests, which would help us identify who you are, however, this does not increase API rate limits.

Examples:

Adding API Key and User Agent to cURL request

curl -X GET "https://api.wiseoldman.net/v2/groups" \
-H "x-api-key: *your_key_here*" \
-A "*your_discord_name_here*"

Adding API Key and User Agent using our JS/TS Library

const { WOMClient } = require('@wise-old-man/utils');

const client = new WOMClient({
apiKey: '*your_key_here',
userAgent: '*your_discord_name_here*'
});

// Use this client to send requests
const groups = await client.groups.searchGroups();

Dates (ISO8601)​

Our API utilizes the ISO8601 format for most Date/Times returned in our models.

Status Codes​

Our API uses conventional HTTP response codes to indicate the success or failure status of an API request.

Success Statuses:

  • 200 - Success.
  • 201 - Success. New resource created

Error Statuses:

  • 400 - Bad Request.
  • 403 - Forbidden.
  • 404 - Not Found.
  • 429 - Too Many Requests. (Usually triggered by API rate limits or too-frequent player updates)
  • 500 - Server Error.

Pagination​

Some API endpoints support pagination in the form of limit and offset query parameters. This will be indicated in the endpoint description.

FieldDefaultMax
limit2050
offset0---

Examples

Using pagination in cURL request

// Returns the top 20-40 groups
curl -X GET "https://api.wiseoldman.net/v2/groups?offset=20&limit=20"

Using pagination through our JS/TS Library

const { WOMClient } = require('@wise-old-man/utils');

const client = new WOMClient();

// Returns the top 20-40 groups
const groups = await client.groups.searchGroups('', { limit: 20, offset: 20 });