Skip to content

Commit

Permalink
Reto mouredev#10 - TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioFurio committed May 13, 2024
1 parent 5cc0719 commit 95c6e9f
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Retos/Reto #10 - LA API [Media]/typescript/IgnacioFurio.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
* Llamar a una API es una de las tareas más comunes en programación.
*
* Implementa una llamada HTTP a una API (la que tú quieras) y muestra su
* resultado a través de la terminal. Por ejemplo: Pokémon, Marvel...
*
* Aquí tienes un listado de posibles APIs:
* https://github.com/public-apis/public-apis
*/
const root = "https://www.dnd5eapi.co/api/spells/animal-shapes";


const getSpells = async (url: string): PromiseResponse => {
let spells: any = {name: "", description: ""};

try {
const res: Response = await fetch(url);
const data: JSON = await res.json();

spells.name = data.name
spells.description = data.desc[0]
} catch (error) {
console.log(error);
};

return spells;
};

getSpells(root);

0 comments on commit 95c6e9f

Please sign in to comment.