Historia

Ejemplo

fetch('https://trivia.apiwant.xyz/trivia/historia')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Fetch error:', error));

Respuesta

{
  "question": "¿Qué famosa filósofa escribió 'El Segundo Sexo'?",
  "options": [
    {
      "answer": "Hannah Arendt",
      "correct": false
    },
    {
      "answer": "Simone de Beauvoir",
      "correct": true
    },
    {
      "answer": "Jean-Paul Sartre",
      "correct": false
    }
  ],
  "optionalURL": "https://api.wantimg.xyz/trivia-historia.png"
}

Last updated