use this api to grab a todo list and create crads for the first 5 with the title and the completed state https://jsonplaceholder.typicode.com/todos code example
Example: jsonplaceholder.typicode/posts
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(response => response.json())
.then(json => console.log(json))