https://github.com/andres15alvarez/fifa-api
An API developed in Python 🐍 with Flask, Flask-restful, SQLAlchmey, Marshmallow and PostgreSQL 🐘
https://github.com/andres15alvarez/fifa-api
api flask postgresql python
Last synced: 2 months ago
JSON representation
An API developed in Python 🐍 with Flask, Flask-restful, SQLAlchmey, Marshmallow and PostgreSQL 🐘
- Host: GitHub
- URL: https://github.com/andres15alvarez/fifa-api
- Owner: andres15alvarez
- Created: 2021-07-09T18:11:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-31T13:07:24.000Z (almost 4 years ago)
- Last Synced: 2025-01-17T13:29:46.028Z (4 months ago)
- Topics: api, flask, postgresql, python
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fifa-api
### An API developed in Python :snake: with Flask, Flask-restful, SQLAlchmey, Marshmallow and PostgreSQL :elephant:
This API was developed consuming the API of FIFA 21. Only for educational purposes.## Resources
### Player
| URL | Method | Description |
| :----------------------|:------:|:-----------------------------------------------------------------------------------------|
| /api/player | GET | Return a list of 20 players (paginated) with their respective club, nation and positions |
| /api/player/ | GET | Return the information of the player, his club, nation and positions |### Club
| URL | Method | Description |
| :----------------------|:------:|:---------------------------------------------------------------------------------------|
| /api/club | GET | Return a list of 20 clubs (paginated) with their respective players |
| /api/club/ | GET | Return the information of the club, with their respective players |### Nation
| URL | Method | Description |
| :----------------------|:------:|:---------------------------------------------------------------------------------------|
| /api/nation | GET | Return a list of 20 nations (paginated) with their respective players |
| /api/nation/ | GET | Return the information of the nation, with their respective players |