This is a test project to provide a .NET Core Web API to serve information about pokemons to a SPA with Angular to show a list of pokemons and download a text file with the information about one specific pokemon.
- Install .NET Core 3.1 SDK
- Clone and Run
$ git clone https://github.com/franciscogilt/pokeapi
$ cd pokeapi
$ dotnet run
- Pokemon
| Type | Request | Description |
|---|---|---|
| GET | /api/pokemon |
Get all the Pokemons |
| GET | /api/pokemon/{name} |
Get a single Pokemon by its name |
| GET | /api/pokemon/{name}/download |
Download a single Pokemon text file by its name |