As a soccer fan and software developer, I built this API to explore RESTful API development and third-party API integration. The project provides live FIFA 2026 match scores, team details, and stadium information using Node.js, Express, and [], while demonstrating backend development, routing, environment management, and API deployment.
TBD
- Live FIFA 2026 match scores
- Team information
- Stadium information
- RESTful API endpoints
- Real-time data from [TODO]
- [INSERT API DATA]
- Deployed on Render
- Node.js
- Express
Match, team, and stadium data are provided by [].
#clone the repo
git clone https://github.com/awu0521/fifa2026-api.git
cd fifa2026-api
#install dependencies
npm install
#add api key to .env file
API_KEY=your_key
PORT=3000
#start the server
npm run devTBD
fifa2026-api/
├── server.js
├── routes/
│ ├── matches.js
│ ├── teams.js
│ └── stadiums.js
├── controllers/
│ ├── matchesController.js
│ ├── teamsController.js
│ └── stadiumsController.js
└── data/
└── mockData.json

