# Get team players Returns a list of players associated with a specific team Endpoint: GET /team-players Version: 2.0.7 Security: bearerAuth ## Query parameters: - `id` (integer, required) ID of the team Example: 69 ## Response 200 fields (application/json): - `status` (string) Example: "success" - `pagination` (object,null) Pagination info if applicable - `errors` (object,null) - `response` (array,null) - `response.id` (integer) Unique identifier of the player Example: 101 - `response.name` (string) Full display name of the player Example: "Lionel Messi" - `response.first_name` (string) First name of the player Example: "Lionel" - `response.last_name` (string) Last name of the player Example: "Messi" - `response.position` (string) Playing position of the player Example: "Forward" - `response.number` (integer) Shirt number Example: 10 - `response.nationality` (string) Nationality of the player Example: "Argentina" - `response.photo` (string) URL to the player's photo Example: "https://example.com/photos/messi.png" - `response.age` (integer) Age of the player Example: 36 - `response.birth_date` (string) Birthdate of the player Example: "1987-06-24" - `response.birth_place` (string) City of birth Example: "Rosario" - `response.birth_country` (string) Country of birth Example: "Argentina" - `response.height` (string) Player height in centimeters or meters Example: "170 cm" - `response.weight` (string) Player weight in kilograms Example: "72 kg" - `response.injured` (boolean) Injury status ## Response 400 fields (application/json): - `status` (string) Example: "error" - `pagination` (object,null) - `errors` (array,null) - `errors.type` (string) Example: "validation_error" - `errors.data` (object) - `response` (object,null) ## Response 500 fields (application/json): - `status` (string) Example: "error" - `pagination` (object,null) - `errors` (array,null) - `errors.type` (string) Example: "validation_error" - `errors.data` (object) - `response` (object,null)