Coaches by Country

GET

The Coaches by Country ID Endpoint returns a list of coaches of a single country

Description

Headersapplication/json
Endpoint Example https://api.sportdatastreamapi.com/coaches/?user=USERNAME&token=TOKEN&t=list&country_id=COUNTRY_ID
Endpoint https://api.sportdatastreamapi.com/coaches/?user=null&token=null&t=list&country_id=25
PaginatedNo, this endpoint is not paginated

Example Response

{
    "data": [
        {
          "id": 3,
          "team_id": 2223,
          "name": "Roger Machado",
          "common_name": "Machado, Roger",
          "firstname": "Roger",
          "lastname": "Machado",
          "birthday": "25/04/75",
          "birthcountry": null,
          "birthplace": null,
          "img": "https://api.sportdatastreamapi.com/images/soccer/coaches/50/3.png",
          "country": {
            "id": 25,
            "name": "Brazil",
            "cc": "br"
          }
        },
        {
          "id": 19,
          "team_id": 2224,
          "name": "Tiago Nunes",
          "common_name": "Nunes, Tiago",
          "firstname": "Tiago",
          "lastname": "Nunes",
          "birthday": "15/02/80",
          "birthcountry": null,
          "birthplace": null,
          "img": "https://api.sportdatastreamapi.com/images/soccer/coaches/50/19.png",
          "country": {
            "id": 25,
            "name": "Brazil",
            "cc": "br"
          }
        },
        {
          "id": 1208,
          "team_id": null,
          "name": "Nelsinho Baptista",
          "common_name": "Baptista, Nelsinho",
          "firstname": "Nelsinho",
          "lastname": "Baptista",
          "birthday": "22/07/50",
          "birthcountry": null,
          "birthplace": null,
          "img": "https://api.sportdatastreamapi.com/images/soccer/coaches/50/1208.png",
          "country": {
            "id": 25,
            "name": "Brazil",
            "cc": "br"
          }
        }
      ],
    }