BoxToBox API

Map coach IDs between providers

GET
/coaches

Translates coach/manager ids from one provider (from) into one or many target providers (to). Up to 100 ids per request. Covers managers/coaches only, not every staff role.

Provider keys:

  • transfermarkt
  • wyscout

Your token grants a subset of these providers; a from or to outside it is rejected with 401.

Example request: GET /coaches?ids=28002&from=transfermarkt&to=wyscout&token=XXX

Query Parameters

ids*string

Comma-separated coach ids in the source provider (max 100)

from*string

Source provider key (single value, see the provider keys above)

to*string

Comma-separated target provider keys (see the provider keys above)

Response Body

application/json

application/json

application/json

token<token>

In: query

curl -X GET "https://example.com/coaches?ids=string&from=string&to=string"
{  "matching": [    {      "name": "Hansi Flick",      "transfermarkt": 67,      "wyscout": 641303    }  ]}