Get API routes

Audience: NadeoServices

GET https://prod.trackmania.core.nadeo.online/api/routes?usage={usage}

Query parameters:

  • {usage} (string) The type of relevant usage (see below for accepted values) *

Gets all available routes on the Core API.


Remarks:

  • There are two allowed values for the usage parameter: Client and Server.

Example request:

GET https://prod.trackmania.core.nadeo.online/api/routes?usage=Client

Example response:

{
  "nadeoservices_storage_object_content_url_redirect": {
    "method": "GET",
    "path": "/storageObjects/{storageObjectId}"
  },
  "nadeoservices_driver_bot_list_add": {
    "method": "POST",
    "path": "/bots/drivers/"
  },
  ...
  "nadeoservices_account_zone_set": {
    "method": "PUT",
    "path": "/accounts/{accountId}/zone"
  },
  "nadeoservices_zone_list_get": {
    "method": "GET",
    "path": "/zones/"
  }
}