---- JSON Placeholder free JSON API --------------------------
https://jsonplaceholder.typicode.com/posts | 100 posts
https://jsonplaceholder.typicode.com/comments | 500 comments
https://jsonplaceholder.typicode.com/albums | 100 albums
https://jsonplaceholder.typicode.com/photos | 5000 photos
https://jsonplaceholder.typicode.com/todos | 200 todos
https://jsonplaceholder.typicode.com/users | 10 users
Fetch single entity (add /:id):
https://jsonplaceholder.typicode.com/posts/1
https://jsonplaceholder.typicode.com/users/3
https://jsonplaceholder.typicode.com/photos/12
--------------------------------------------------------------
JSON API - URL for user testing
----------------------------------
https://jsonplaceholder.typicode.com/users/1
https://jsonplaceholder.typicode.com/users/
axios
.get("https://jsonplaceholder.typicode.com/posts")
.then(function (response) {
console.log(response);
})
.catch(function (error) {
// handle error
console.log(error);
})
.then(function () {
// always executed
});
fetch('https://jsonplaceholder.typicode.com/todos/2')
.then(response => response.json())
.then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/2')
.then(response => response.json())
.then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/2')
.then(response => response.json())
.then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/2')
.then(response => response.json())
.then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(response => response.json())
.then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(response => response.json())
.then(json => console.log(json))
{
"userId": 1,
"id": 1,
"title": "delectus aut autem",
"completed": false
}
Code Example |
---|
Html :: html lang en-us or en-US |
Html :: Invalid DOM property `for`. Did you mean `htmlFor`? |
Html :: twig keys |
Html :: turn of blur html canvas |
Html :: html drop down |
Html :: filter in v-html |
Html :: how to move navlink to the right in bootstrap |
Html :: jinja mark text as safe |
Html :: how to upload pdf in html |
Html :: ico html |
Html :: html video controls |
Html :: am pm time html javascript |
Html :: Validate length with html |
Html :: bulma upload file |
Html :: vim set line wrap |
Html :: html sound |
Html :: html csrf token input |
Html :: angularjs href variable |
Html :: upload svg to wordpress |
Html :: html center tag |
Html :: safe webp image usage html |
Html :: html pass a string to clipboard |
Html :: svg xlink |
Html :: abbreviations in html |
Html :: vertical line in html |
Html :: bootstrap 3 form template |
Html :: flexbox row |
Html :: comment in html5 |
Html :: portfolio templates html |
Html :: bootstrap select dropdown height size |