New Recruit has many features, some can be quite complex, especially the Tournament Organiser tool
This API allows you to retrieve player reports and their related army lists for tournaments in the NR system.
All requests require authentication via HTTP headers.
NR-Login
: Your usernameNR-Password
: Your password{ "message": "Wrong username/password, please contact NR if you need to access this API" }
POST https://www.newrecruit.eu/api/reports
Send a JSON object with at least one of the following fields:
Field | Type | Description |
---|---|---|
id_tournament | string | Tournament ID |
id_tourny | string | Alternative field name for Tournament ID |
player | string | Player login name (case-insensitive) |
POST /api/reports HTTP/1.1 Host: www.newrecruit.eu Content-Type: application/json NR-Login: myuser NR-Password: mypassword { "id_tournament": "1234567890abcdef", "player": "Vincent" }
{ "error": "Incorrect input" }
id_tournament
or id_tourny
for the tournament ID; both are
accepted.player
is specified, the API searches for the player's login name (case-insensitive).exported_list
field for each player when available.{ "error": "Incorrect input" }
If you require access or encounter authentication issues, please contact the NR team.