{
    "info": {
        "name": "Football & Leagues API",
        "description": "Comprehensive football data including leagues, teams, players, matches, standings, transfers, and news",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
    },
    "item": [
        {
            "name": "\ud83d\udd10 Authentication",
            "description": "Authentication endpoints for user registration and login",
            "item": [
                {
                    "name": "Register",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Test User\",\n    \"email\": \"test@example.com\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/auth/register",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "auth",
                                "register"
                            ]
                        }
                    }
                },
                {
                    "name": "Login",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"james@football.fan\",\n    \"password\": \"password123\"\n}"
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/auth/login",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "auth",
                                "login"
                            ]
                        }
                    }
                }
            ]
        },
        {
            "name": "Favorites",
            "description": "User favorite teams and players",
            "item": [
                {
                    "name": "Get All Favorites",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/favorites",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "favorites"
                            ]
                        },
                        "description": "Retrieve a paginated list of all favorites"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"user_id\": 1,\n            \"user_name\": \"James Wilson\",\n            \"item_type\": \"team\",\n            \"item_id\": 1,\n            \"item_name\": \"Manchester City\",\n            \"added_at\": \"2023-08-15T10:00:00Z\"\n        },\n        {\n            \"user_id\": 1,\n            \"user_name\": \"James Wilson\",\n            \"item_type\": \"team\",\n            \"item_id\": 1,\n            \"item_name\": \"Manchester City\",\n            \"added_at\": \"2023-08-15T10:00:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Favorite by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/favorites/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "favorites",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single favorite by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"James Wilson\",\n    \"item_type\": \"team\",\n    \"item_id\": 1,\n    \"item_name\": \"Manchester City\",\n    \"added_at\": \"2023-08-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Favorite",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"James Wilson\",\n    \"item_type\": \"team\",\n    \"item_id\": 1,\n    \"item_name\": \"Manchester City\",\n    \"added_at\": \"2023-08-15T10:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/favorites",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "favorites"
                            ]
                        },
                        "description": "Create a new favorite"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"James Wilson\",\n    \"item_type\": \"team\",\n    \"item_id\": 1,\n    \"item_name\": \"Manchester City\",\n    \"added_at\": \"2023-08-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Favorite",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"user_id\": 1,\n    \"user_name\": \"James Wilson\",\n    \"item_type\": \"team\",\n    \"item_id\": 1,\n    \"item_name\": \"Manchester City\",\n    \"added_at\": \"2023-08-15T10:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/favorites/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "favorites",
                                "1"
                            ]
                        },
                        "description": "Update an existing favorite"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"user_id\": 1,\n    \"user_name\": \"James Wilson\",\n    \"item_type\": \"team\",\n    \"item_id\": 1,\n    \"item_name\": \"Manchester City\",\n    \"added_at\": \"2023-08-15T10:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Favorite",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/favorites/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "favorites",
                                "1"
                            ]
                        },
                        "description": "Delete a favorite by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Favorite deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Leagues",
            "description": "Football leagues and competitions",
            "item": [
                {
                    "name": "Get All Leagues",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/leagues",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "leagues"
                            ]
                        },
                        "description": "Retrieve a paginated list of all leagues"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Premier League\",\n            \"slug\": \"premier-league\",\n            \"country\": \"England\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n            \"season\": \"2023\\/2024\",\n            \"teams_count\": 20,\n            \"current_matchday\": 15,\n            \"type\": \"Domestic League\"\n        },\n        {\n            \"name\": \"Premier League\",\n            \"slug\": \"premier-league\",\n            \"country\": \"England\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n            \"season\": \"2023\\/2024\",\n            \"teams_count\": 20,\n            \"current_matchday\": 15,\n            \"type\": \"Domestic League\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get League by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/leagues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "leagues",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single league by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Premier League\",\n    \"slug\": \"premier-league\",\n    \"country\": \"England\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n    \"season\": \"2023\\/2024\",\n    \"teams_count\": 20,\n    \"current_matchday\": 15,\n    \"type\": \"Domestic League\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create League",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Premier League\",\n    \"slug\": \"premier-league\",\n    \"country\": \"England\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n    \"season\": \"2023\\/2024\",\n    \"teams_count\": 20,\n    \"current_matchday\": 15,\n    \"type\": \"Domestic League\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/leagues",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "leagues"
                            ]
                        },
                        "description": "Create a new league"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Premier League\",\n    \"slug\": \"premier-league\",\n    \"country\": \"England\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n    \"season\": \"2023\\/2024\",\n    \"teams_count\": 20,\n    \"current_matchday\": 15,\n    \"type\": \"Domestic League\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update League",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Premier League\",\n    \"slug\": \"premier-league\",\n    \"country\": \"England\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n    \"season\": \"2023\\/2024\",\n    \"teams_count\": 20,\n    \"current_matchday\": 15,\n    \"type\": \"Domestic League\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/leagues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "leagues",
                                "1"
                            ]
                        },
                        "description": "Update an existing league"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Premier League\",\n    \"slug\": \"premier-league\",\n    \"country\": \"England\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/200\\/200?random=league1\",\n    \"season\": \"2023\\/2024\",\n    \"teams_count\": 20,\n    \"current_matchday\": 15,\n    \"type\": \"Domestic League\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete League",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/leagues/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "leagues",
                                "1"
                            ]
                        },
                        "description": "Delete a league by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"League deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Matches",
            "description": "Match results and fixtures",
            "item": [
                {
                    "name": "Get All Matches",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/matches",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "matches"
                            ]
                        },
                        "description": "Retrieve a paginated list of all matches"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"home_team_id\": 1,\n            \"home_team_name\": \"Manchester City\",\n            \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n            \"away_team_id\": 3,\n            \"away_team_name\": \"Liverpool\",\n            \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n            \"home_score\": 1,\n            \"away_score\": 1,\n            \"status\": \"Finished\",\n            \"matchday\": 14,\n            \"date\": \"2023-11-25T15:00:00Z\",\n            \"stadium\": \"Etihad Stadium\",\n            \"attendance\": 53400,\n            \"referee\": \"Michael Oliver\"\n        },\n        {\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"home_team_id\": 1,\n            \"home_team_name\": \"Manchester City\",\n            \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n            \"away_team_id\": 3,\n            \"away_team_name\": \"Liverpool\",\n            \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n            \"home_score\": 1,\n            \"away_score\": 1,\n            \"status\": \"Finished\",\n            \"matchday\": 14,\n            \"date\": \"2023-11-25T15:00:00Z\",\n            \"stadium\": \"Etihad Stadium\",\n            \"attendance\": 53400,\n            \"referee\": \"Michael Oliver\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Matche by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/matches/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "matches",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single matche by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"home_team_id\": 1,\n    \"home_team_name\": \"Manchester City\",\n    \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n    \"away_team_id\": 3,\n    \"away_team_name\": \"Liverpool\",\n    \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n    \"home_score\": 1,\n    \"away_score\": 1,\n    \"status\": \"Finished\",\n    \"matchday\": 14,\n    \"date\": \"2023-11-25T15:00:00Z\",\n    \"stadium\": \"Etihad Stadium\",\n    \"attendance\": 53400,\n    \"referee\": \"Michael Oliver\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Matche",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"home_team_id\": 1,\n    \"home_team_name\": \"Manchester City\",\n    \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n    \"away_team_id\": 3,\n    \"away_team_name\": \"Liverpool\",\n    \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n    \"home_score\": 1,\n    \"away_score\": 1,\n    \"status\": \"Finished\",\n    \"matchday\": 14,\n    \"date\": \"2023-11-25T15:00:00Z\",\n    \"stadium\": \"Etihad Stadium\",\n    \"attendance\": 53400,\n    \"referee\": \"Michael Oliver\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/matches",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "matches"
                            ]
                        },
                        "description": "Create a new matche"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"home_team_id\": 1,\n    \"home_team_name\": \"Manchester City\",\n    \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n    \"away_team_id\": 3,\n    \"away_team_name\": \"Liverpool\",\n    \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n    \"home_score\": 1,\n    \"away_score\": 1,\n    \"status\": \"Finished\",\n    \"matchday\": 14,\n    \"date\": \"2023-11-25T15:00:00Z\",\n    \"stadium\": \"Etihad Stadium\",\n    \"attendance\": 53400,\n    \"referee\": \"Michael Oliver\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Matche",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"home_team_id\": 1,\n    \"home_team_name\": \"Manchester City\",\n    \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n    \"away_team_id\": 3,\n    \"away_team_name\": \"Liverpool\",\n    \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n    \"home_score\": 1,\n    \"away_score\": 1,\n    \"status\": \"Finished\",\n    \"matchday\": 14,\n    \"date\": \"2023-11-25T15:00:00Z\",\n    \"stadium\": \"Etihad Stadium\",\n    \"attendance\": 53400,\n    \"referee\": \"Michael Oliver\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/matches/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "matches",
                                "1"
                            ]
                        },
                        "description": "Update an existing matche"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"home_team_id\": 1,\n    \"home_team_name\": \"Manchester City\",\n    \"home_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team1\",\n    \"away_team_id\": 3,\n    \"away_team_name\": \"Liverpool\",\n    \"away_team_logo\": \"https:\\/\\/picsum.photos\\/100\\/100?random=team3\",\n    \"home_score\": 1,\n    \"away_score\": 1,\n    \"status\": \"Finished\",\n    \"matchday\": 14,\n    \"date\": \"2023-11-25T15:00:00Z\",\n    \"stadium\": \"Etihad Stadium\",\n    \"attendance\": 53400,\n    \"referee\": \"Michael Oliver\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Matche",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/matches/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "matches",
                                "1"
                            ]
                        },
                        "description": "Delete a matche by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Matche deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "News",
            "description": "Football news and updates",
            "item": [
                {
                    "name": "Get All News",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/news",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "news"
                            ]
                        },
                        "description": "Retrieve a paginated list of all news"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"title\": \"Haaland Breaks Premier League Record\",\n            \"slug\": \"haaland-breaks-record\",\n            \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n            \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n            \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n            \"category\": \"Transfer News\",\n            \"tags\": [\n                \"Premier League\",\n                \"Manchester City\",\n                \"Records\"\n            ],\n            \"source\": \"Football Daily\",\n            \"published_at\": \"2023-11-28T09:00:00Z\"\n        },\n        {\n            \"title\": \"Haaland Breaks Premier League Record\",\n            \"slug\": \"haaland-breaks-record\",\n            \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n            \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n            \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n            \"category\": \"Transfer News\",\n            \"tags\": [\n                \"Premier League\",\n                \"Manchester City\",\n                \"Records\"\n            ],\n            \"source\": \"Football Daily\",\n            \"published_at\": \"2023-11-28T09:00:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get New by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single new by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Haaland Breaks Premier League Record\",\n    \"slug\": \"haaland-breaks-record\",\n    \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n    \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n    \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n    \"category\": \"Transfer News\",\n    \"tags\": [\n        \"Premier League\",\n        \"Manchester City\",\n        \"Records\"\n    ],\n    \"source\": \"Football Daily\",\n    \"published_at\": \"2023-11-28T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create New",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Haaland Breaks Premier League Record\",\n    \"slug\": \"haaland-breaks-record\",\n    \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n    \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n    \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n    \"category\": \"Transfer News\",\n    \"tags\": [\n        \"Premier League\",\n        \"Manchester City\",\n        \"Records\"\n    ],\n    \"source\": \"Football Daily\",\n    \"published_at\": \"2023-11-28T09:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/news",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "news"
                            ]
                        },
                        "description": "Create a new new"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Haaland Breaks Premier League Record\",\n    \"slug\": \"haaland-breaks-record\",\n    \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n    \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n    \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n    \"category\": \"Transfer News\",\n    \"tags\": [\n        \"Premier League\",\n        \"Manchester City\",\n        \"Records\"\n    ],\n    \"source\": \"Football Daily\",\n    \"published_at\": \"2023-11-28T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update New",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"title\": \"Haaland Breaks Premier League Record\",\n    \"slug\": \"haaland-breaks-record\",\n    \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n    \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n    \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n    \"category\": \"Transfer News\",\n    \"tags\": [\n        \"Premier League\",\n        \"Manchester City\",\n        \"Records\"\n    ],\n    \"source\": \"Football Daily\",\n    \"published_at\": \"2023-11-28T09:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Update an existing new"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"title\": \"Haaland Breaks Premier League Record\",\n    \"slug\": \"haaland-breaks-record\",\n    \"excerpt\": \"Manchester City striker Erling Haaland sets new scoring record in the Premier League\",\n    \"content\": \"In a stunning performance, Erling Haaland has broken the Premier League single-season scoring record...\",\n    \"image\": \"https:\\/\\/picsum.photos\\/800\\/450?random=news1\",\n    \"category\": \"Transfer News\",\n    \"tags\": [\n        \"Premier League\",\n        \"Manchester City\",\n        \"Records\"\n    ],\n    \"source\": \"Football Daily\",\n    \"published_at\": \"2023-11-28T09:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete New",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/news/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "news",
                                "1"
                            ]
                        },
                        "description": "Delete a new by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"New deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Player-statistics",
            "description": "Player performance statistics",
            "item": [
                {
                    "name": "Get All Player-statistics",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/player-statistics",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "player-statistics"
                            ]
                        },
                        "description": "Retrieve a paginated list of all player-statistics"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"player_id\": 1,\n            \"player_name\": \"Erling Haaland\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"season\": \"2023\\/2024\",\n            \"appearances\": 14,\n            \"goals\": 18,\n            \"assists\": 3,\n            \"yellow_cards\": 2,\n            \"red_cards\": 0,\n            \"minutes_played\": 1180,\n            \"rating\": 8.199999999999999289457264239899814128875732421875\n        },\n        {\n            \"player_id\": 1,\n            \"player_name\": \"Erling Haaland\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"season\": \"2023\\/2024\",\n            \"appearances\": 14,\n            \"goals\": 18,\n            \"assists\": 3,\n            \"yellow_cards\": 2,\n            \"red_cards\": 0,\n            \"minutes_played\": 1180,\n            \"rating\": 8.199999999999999289457264239899814128875732421875\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Player-statistic by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/player-statistics/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "player-statistics",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single player-statistic by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 1,\n    \"player_name\": \"Erling Haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"season\": \"2023\\/2024\",\n    \"appearances\": 14,\n    \"goals\": 18,\n    \"assists\": 3,\n    \"yellow_cards\": 2,\n    \"red_cards\": 0,\n    \"minutes_played\": 1180,\n    \"rating\": 8.199999999999999289457264239899814128875732421875\n}"
                        }
                    ]
                },
                {
                    "name": "Create Player-statistic",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"player_id\": 1,\n    \"player_name\": \"Erling Haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"season\": \"2023\\/2024\",\n    \"appearances\": 14,\n    \"goals\": 18,\n    \"assists\": 3,\n    \"yellow_cards\": 2,\n    \"red_cards\": 0,\n    \"minutes_played\": 1180,\n    \"rating\": 8.199999999999999289457264239899814128875732421875\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/player-statistics",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "player-statistics"
                            ]
                        },
                        "description": "Create a new player-statistic"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 1,\n    \"player_name\": \"Erling Haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"season\": \"2023\\/2024\",\n    \"appearances\": 14,\n    \"goals\": 18,\n    \"assists\": 3,\n    \"yellow_cards\": 2,\n    \"red_cards\": 0,\n    \"minutes_played\": 1180,\n    \"rating\": 8.199999999999999289457264239899814128875732421875\n}"
                        }
                    ]
                },
                {
                    "name": "Update Player-statistic",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"player_id\": 1,\n    \"player_name\": \"Erling Haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"season\": \"2023\\/2024\",\n    \"appearances\": 14,\n    \"goals\": 18,\n    \"assists\": 3,\n    \"yellow_cards\": 2,\n    \"red_cards\": 0,\n    \"minutes_played\": 1180,\n    \"rating\": 8.199999999999999289457264239899814128875732421875\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/player-statistics/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "player-statistics",
                                "1"
                            ]
                        },
                        "description": "Update an existing player-statistic"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 1,\n    \"player_name\": \"Erling Haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"season\": \"2023\\/2024\",\n    \"appearances\": 14,\n    \"goals\": 18,\n    \"assists\": 3,\n    \"yellow_cards\": 2,\n    \"red_cards\": 0,\n    \"minutes_played\": 1180,\n    \"rating\": 8.199999999999999289457264239899814128875732421875\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Player-statistic",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/player-statistics/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "player-statistics",
                                "1"
                            ]
                        },
                        "description": "Delete a player-statistic by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Player-statistic deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Players",
            "description": "Football players and their details",
            "item": [
                {
                    "name": "Get All Players",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/players",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "players"
                            ]
                        },
                        "description": "Retrieve a paginated list of all players"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Erling Haaland\",\n            \"slug\": \"erling-haaland\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n            \"position\": \"Forward\",\n            \"jersey_number\": 9,\n            \"nationality\": \"Norway\",\n            \"date_of_birth\": \"2000-07-21\",\n            \"age\": 23,\n            \"height\": \"194 cm\",\n            \"weight\": \"88 kg\",\n            \"preferred_foot\": \"Left\",\n            \"market_value\": 180000000\n        },\n        {\n            \"name\": \"Erling Haaland\",\n            \"slug\": \"erling-haaland\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n            \"position\": \"Forward\",\n            \"jersey_number\": 9,\n            \"nationality\": \"Norway\",\n            \"date_of_birth\": \"2000-07-21\",\n            \"age\": 23,\n            \"height\": \"194 cm\",\n            \"weight\": \"88 kg\",\n            \"preferred_foot\": \"Left\",\n            \"market_value\": 180000000\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Player by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/players/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "players",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single player by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Erling Haaland\",\n    \"slug\": \"erling-haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n    \"position\": \"Forward\",\n    \"jersey_number\": 9,\n    \"nationality\": \"Norway\",\n    \"date_of_birth\": \"2000-07-21\",\n    \"age\": 23,\n    \"height\": \"194 cm\",\n    \"weight\": \"88 kg\",\n    \"preferred_foot\": \"Left\",\n    \"market_value\": 180000000\n}"
                        }
                    ]
                },
                {
                    "name": "Create Player",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Erling Haaland\",\n    \"slug\": \"erling-haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n    \"position\": \"Forward\",\n    \"jersey_number\": 9,\n    \"nationality\": \"Norway\",\n    \"date_of_birth\": \"2000-07-21\",\n    \"age\": 23,\n    \"height\": \"194 cm\",\n    \"weight\": \"88 kg\",\n    \"preferred_foot\": \"Left\",\n    \"market_value\": 180000000\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/players",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "players"
                            ]
                        },
                        "description": "Create a new player"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Erling Haaland\",\n    \"slug\": \"erling-haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n    \"position\": \"Forward\",\n    \"jersey_number\": 9,\n    \"nationality\": \"Norway\",\n    \"date_of_birth\": \"2000-07-21\",\n    \"age\": 23,\n    \"height\": \"194 cm\",\n    \"weight\": \"88 kg\",\n    \"preferred_foot\": \"Left\",\n    \"market_value\": 180000000\n}"
                        }
                    ]
                },
                {
                    "name": "Update Player",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Erling Haaland\",\n    \"slug\": \"erling-haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n    \"position\": \"Forward\",\n    \"jersey_number\": 9,\n    \"nationality\": \"Norway\",\n    \"date_of_birth\": \"2000-07-21\",\n    \"age\": 23,\n    \"height\": \"194 cm\",\n    \"weight\": \"88 kg\",\n    \"preferred_foot\": \"Left\",\n    \"market_value\": 180000000\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/players/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "players",
                                "1"
                            ]
                        },
                        "description": "Update an existing player"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Erling Haaland\",\n    \"slug\": \"erling-haaland\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"photo\": \"https:\\/\\/i.pravatar.cc\\/200?img=15\",\n    \"position\": \"Forward\",\n    \"jersey_number\": 9,\n    \"nationality\": \"Norway\",\n    \"date_of_birth\": \"2000-07-21\",\n    \"age\": 23,\n    \"height\": \"194 cm\",\n    \"weight\": \"88 kg\",\n    \"preferred_foot\": \"Left\",\n    \"market_value\": 180000000\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Player",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/players/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "players",
                                "1"
                            ]
                        },
                        "description": "Delete a player by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Player deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Standings",
            "description": "League standings and tables",
            "item": [
                {
                    "name": "Get All Standings",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/standings",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "standings"
                            ]
                        },
                        "description": "Retrieve a paginated list of all standings"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n            \"position\": 1,\n            \"played\": 14,\n            \"won\": 10,\n            \"drawn\": 3,\n            \"lost\": 1,\n            \"goals_for\": 35,\n            \"goals_against\": 12,\n            \"goal_difference\": 23,\n            \"points\": 33,\n            \"form\": \"WWDWW\"\n        },\n        {\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"team_id\": 1,\n            \"team_name\": \"Manchester City\",\n            \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n            \"position\": 1,\n            \"played\": 14,\n            \"won\": 10,\n            \"drawn\": 3,\n            \"lost\": 1,\n            \"goals_for\": 35,\n            \"goals_against\": 12,\n            \"goal_difference\": 23,\n            \"points\": 33,\n            \"form\": \"WWDWW\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Standing by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/standings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "standings",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single standing by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n    \"position\": 1,\n    \"played\": 14,\n    \"won\": 10,\n    \"drawn\": 3,\n    \"lost\": 1,\n    \"goals_for\": 35,\n    \"goals_against\": 12,\n    \"goal_difference\": 23,\n    \"points\": 33,\n    \"form\": \"WWDWW\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Standing",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n    \"position\": 1,\n    \"played\": 14,\n    \"won\": 10,\n    \"drawn\": 3,\n    \"lost\": 1,\n    \"goals_for\": 35,\n    \"goals_against\": 12,\n    \"goal_difference\": 23,\n    \"points\": 33,\n    \"form\": \"WWDWW\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/standings",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "standings"
                            ]
                        },
                        "description": "Create a new standing"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n    \"position\": 1,\n    \"played\": 14,\n    \"won\": 10,\n    \"drawn\": 3,\n    \"lost\": 1,\n    \"goals_for\": 35,\n    \"goals_against\": 12,\n    \"goal_difference\": 23,\n    \"points\": 33,\n    \"form\": \"WWDWW\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Standing",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n    \"position\": 1,\n    \"played\": 14,\n    \"won\": 10,\n    \"drawn\": 3,\n    \"lost\": 1,\n    \"goals_for\": 35,\n    \"goals_against\": 12,\n    \"goal_difference\": 23,\n    \"points\": 33,\n    \"form\": \"WWDWW\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/standings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "standings",
                                "1"
                            ]
                        },
                        "description": "Update an existing standing"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"team_id\": 1,\n    \"team_name\": \"Manchester City\",\n    \"team_logo\": \"https:\\/\\/picsum.photos\\/80\\/80?random=team1\",\n    \"position\": 1,\n    \"played\": 14,\n    \"won\": 10,\n    \"drawn\": 3,\n    \"lost\": 1,\n    \"goals_for\": 35,\n    \"goals_against\": 12,\n    \"goal_difference\": 23,\n    \"points\": 33,\n    \"form\": \"WWDWW\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Standing",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/standings/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "standings",
                                "1"
                            ]
                        },
                        "description": "Delete a standing by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Standing deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Teams",
            "description": "Football teams and clubs",
            "item": [
                {
                    "name": "Get All Teams",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/teams",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "teams"
                            ]
                        },
                        "description": "Retrieve a paginated list of all teams"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"Manchester City\",\n            \"slug\": \"manchester-city\",\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n            \"stadium\": \"Etihad Stadium\",\n            \"founded\": 1880,\n            \"country\": \"England\",\n            \"city\": \"Manchester\",\n            \"manager\": \"Pep Guardiola\",\n            \"website\": \"https:\\/\\/mancity.com\",\n            \"squad_size\": 25\n        },\n        {\n            \"name\": \"Manchester City\",\n            \"slug\": \"manchester-city\",\n            \"league_id\": 1,\n            \"league_name\": \"Premier League\",\n            \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n            \"stadium\": \"Etihad Stadium\",\n            \"founded\": 1880,\n            \"country\": \"England\",\n            \"city\": \"Manchester\",\n            \"manager\": \"Pep Guardiola\",\n            \"website\": \"https:\\/\\/mancity.com\",\n            \"squad_size\": 25\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Team by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/teams/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "teams",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single team by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Manchester City\",\n    \"slug\": \"manchester-city\",\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n    \"stadium\": \"Etihad Stadium\",\n    \"founded\": 1880,\n    \"country\": \"England\",\n    \"city\": \"Manchester\",\n    \"manager\": \"Pep Guardiola\",\n    \"website\": \"https:\\/\\/mancity.com\",\n    \"squad_size\": 25\n}"
                        }
                    ]
                },
                {
                    "name": "Create Team",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Manchester City\",\n    \"slug\": \"manchester-city\",\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n    \"stadium\": \"Etihad Stadium\",\n    \"founded\": 1880,\n    \"country\": \"England\",\n    \"city\": \"Manchester\",\n    \"manager\": \"Pep Guardiola\",\n    \"website\": \"https:\\/\\/mancity.com\",\n    \"squad_size\": 25\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/teams",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "teams"
                            ]
                        },
                        "description": "Create a new team"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Manchester City\",\n    \"slug\": \"manchester-city\",\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n    \"stadium\": \"Etihad Stadium\",\n    \"founded\": 1880,\n    \"country\": \"England\",\n    \"city\": \"Manchester\",\n    \"manager\": \"Pep Guardiola\",\n    \"website\": \"https:\\/\\/mancity.com\",\n    \"squad_size\": 25\n}"
                        }
                    ]
                },
                {
                    "name": "Update Team",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Manchester City\",\n    \"slug\": \"manchester-city\",\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n    \"stadium\": \"Etihad Stadium\",\n    \"founded\": 1880,\n    \"country\": \"England\",\n    \"city\": \"Manchester\",\n    \"manager\": \"Pep Guardiola\",\n    \"website\": \"https:\\/\\/mancity.com\",\n    \"squad_size\": 25\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/teams/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "teams",
                                "1"
                            ]
                        },
                        "description": "Update an existing team"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"Manchester City\",\n    \"slug\": \"manchester-city\",\n    \"league_id\": 1,\n    \"league_name\": \"Premier League\",\n    \"logo\": \"https:\\/\\/picsum.photos\\/150\\/150?random=team1\",\n    \"stadium\": \"Etihad Stadium\",\n    \"founded\": 1880,\n    \"country\": \"England\",\n    \"city\": \"Manchester\",\n    \"manager\": \"Pep Guardiola\",\n    \"website\": \"https:\\/\\/mancity.com\",\n    \"squad_size\": 25\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Team",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/teams/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "teams",
                                "1"
                            ]
                        },
                        "description": "Delete a team by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Team deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Transfers",
            "description": "Player transfers and signings",
            "item": [
                {
                    "name": "Get All Transfers",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/transfers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "transfers"
                            ]
                        },
                        "description": "Retrieve a paginated list of all transfers"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"player_id\": 5,\n            \"player_name\": \"Jude Bellingham\",\n            \"from_team_id\": 99,\n            \"from_team_name\": \"Borussia Dortmund\",\n            \"to_team_id\": 4,\n            \"to_team_name\": \"Real Madrid\",\n            \"transfer_fee\": 103000000,\n            \"transfer_type\": \"Permanent\",\n            \"contract_length\": \"6 years\",\n            \"announced_at\": \"2023-06-14T12:00:00Z\"\n        },\n        {\n            \"player_id\": 5,\n            \"player_name\": \"Jude Bellingham\",\n            \"from_team_id\": 99,\n            \"from_team_name\": \"Borussia Dortmund\",\n            \"to_team_id\": 4,\n            \"to_team_name\": \"Real Madrid\",\n            \"transfer_fee\": 103000000,\n            \"transfer_type\": \"Permanent\",\n            \"contract_length\": \"6 years\",\n            \"announced_at\": \"2023-06-14T12:00:00Z\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get Transfer by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/transfers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "transfers",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single transfer by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 5,\n    \"player_name\": \"Jude Bellingham\",\n    \"from_team_id\": 99,\n    \"from_team_name\": \"Borussia Dortmund\",\n    \"to_team_id\": 4,\n    \"to_team_name\": \"Real Madrid\",\n    \"transfer_fee\": 103000000,\n    \"transfer_type\": \"Permanent\",\n    \"contract_length\": \"6 years\",\n    \"announced_at\": \"2023-06-14T12:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create Transfer",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"player_id\": 5,\n    \"player_name\": \"Jude Bellingham\",\n    \"from_team_id\": 99,\n    \"from_team_name\": \"Borussia Dortmund\",\n    \"to_team_id\": 4,\n    \"to_team_name\": \"Real Madrid\",\n    \"transfer_fee\": 103000000,\n    \"transfer_type\": \"Permanent\",\n    \"contract_length\": \"6 years\",\n    \"announced_at\": \"2023-06-14T12:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/transfers",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "transfers"
                            ]
                        },
                        "description": "Create a new transfer"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 5,\n    \"player_name\": \"Jude Bellingham\",\n    \"from_team_id\": 99,\n    \"from_team_name\": \"Borussia Dortmund\",\n    \"to_team_id\": 4,\n    \"to_team_name\": \"Real Madrid\",\n    \"transfer_fee\": 103000000,\n    \"transfer_type\": \"Permanent\",\n    \"contract_length\": \"6 years\",\n    \"announced_at\": \"2023-06-14T12:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update Transfer",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"player_id\": 5,\n    \"player_name\": \"Jude Bellingham\",\n    \"from_team_id\": 99,\n    \"from_team_name\": \"Borussia Dortmund\",\n    \"to_team_id\": 4,\n    \"to_team_name\": \"Real Madrid\",\n    \"transfer_fee\": 103000000,\n    \"transfer_type\": \"Permanent\",\n    \"contract_length\": \"6 years\",\n    \"announced_at\": \"2023-06-14T12:00:00Z\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/transfers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "transfers",
                                "1"
                            ]
                        },
                        "description": "Update an existing transfer"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"player_id\": 5,\n    \"player_name\": \"Jude Bellingham\",\n    \"from_team_id\": 99,\n    \"from_team_name\": \"Borussia Dortmund\",\n    \"to_team_id\": 4,\n    \"to_team_name\": \"Real Madrid\",\n    \"transfer_fee\": 103000000,\n    \"transfer_type\": \"Permanent\",\n    \"contract_length\": \"6 years\",\n    \"announced_at\": \"2023-06-14T12:00:00Z\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete Transfer",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/transfers/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "transfers",
                                "1"
                            ]
                        },
                        "description": "Delete a transfer by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"Transfer deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        },
        {
            "name": "Users",
            "description": "Registered football fans",
            "item": [
                {
                    "name": "Get All Users",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "users"
                            ]
                        },
                        "description": "Retrieve a paginated list of all users"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"data\": [\n        {\n            \"name\": \"James Wilson\",\n            \"email\": \"james@football.fan\",\n            \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n            \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n            \"favorite_team_id\": 1,\n            \"favorite_team_name\": \"Manchester City\",\n            \"joined_at\": \"2023-08-15\"\n        },\n        {\n            \"name\": \"James Wilson\",\n            \"email\": \"james@football.fan\",\n            \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n            \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n            \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n            \"favorite_team_id\": 1,\n            \"favorite_team_name\": \"Manchester City\",\n            \"joined_at\": \"2023-08-15\"\n        }\n    ],\n    \"meta\": {\n        \"current_page\": 1,\n        \"total\": 50,\n        \"per_page\": 15\n    }\n}"
                        }
                    ]
                },
                {
                    "name": "Get User by ID",
                    "request": {
                        "method": "GET",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Retrieve a single user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"James Wilson\",\n    \"email\": \"james@football.fan\",\n    \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n    \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"favorite_team_id\": 1,\n    \"favorite_team_name\": \"Manchester City\",\n    \"joined_at\": \"2023-08-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Create User",
                    "request": {
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"James Wilson\",\n    \"email\": \"james@football.fan\",\n    \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n    \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"favorite_team_id\": 1,\n    \"favorite_team_name\": \"Manchester City\",\n    \"joined_at\": \"2023-08-15\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/users",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "users"
                            ]
                        },
                        "description": "Create a new user"
                    },
                    "response": [
                        {
                            "name": "201 Created",
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"James Wilson\",\n    \"email\": \"james@football.fan\",\n    \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n    \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"favorite_team_id\": 1,\n    \"favorite_team_name\": \"Manchester City\",\n    \"joined_at\": \"2023-08-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Update User",
                    "request": {
                        "method": "PUT",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json",
                                "type": "text"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"James Wilson\",\n    \"email\": \"james@football.fan\",\n    \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n    \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"favorite_team_id\": 1,\n    \"favorite_team_name\": \"Manchester City\",\n    \"joined_at\": \"2023-08-15\"\n}",
                            "options": {
                                "raw": {
                                    "language": "json"
                                }
                            }
                        },
                        "url": {
                            "raw": "{{baseUrl}}/api/football/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Update an existing user"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"name\": \"James Wilson\",\n    \"email\": \"james@football.fan\",\n    \"password\": \"$2y$12$l6tNRZeEC8rUuiLQQSHdaeSoNP\\/nUun8xRjDC5bPSdFEUZz5zho6S\",\n    \"api_token\": \"19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc\",\n    \"avatar\": \"https:\\/\\/i.pravatar.cc\\/150?img=12\",\n    \"favorite_team_id\": 1,\n    \"favorite_team_name\": \"Manchester City\",\n    \"joined_at\": \"2023-08-15\"\n}"
                        }
                    ]
                },
                {
                    "name": "Delete User",
                    "request": {
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json",
                                "type": "text"
                            }
                        ],
                        "url": {
                            "raw": "{{baseUrl}}/api/football/users/1",
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "path": [
                                "api",
                                "football",
                                "users",
                                "1"
                            ]
                        },
                        "description": "Delete a user by ID"
                    },
                    "response": [
                        {
                            "name": "200 OK",
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n    \"message\": \"User deleted successfully\"\n}"
                        }
                    ]
                }
            ]
        }
    ],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://jsonvibe.com",
            "type": "string"
        },
        {
            "key": "token",
            "value": "19312a89f1007bcaa98130f83e0f8618f5da7c8e3b37e5c6f1d17ec06b79c9bc",
            "type": "string"
        }
    ],
    "auth": {
        "type": "bearer",
        "bearer": [
            {
                "key": "token",
                "value": "{{token}}",
                "type": "string"
            }
        ]
    }
}