“JSON Placeholder” Ответ

JSON Placeholder

---- 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
--------------------------------------------------------------
KostasX

фиктивная API JSON

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
				

JSON Placeholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Swallow Tail Gull

JSON Placeholder

JSON API - URL for user testing
----------------------------------
https://jsonplaceholder.typicode.com/users/1
https://jsonplaceholder.typicode.com/users/
emmanuelAKBI

JSON Placeholder

 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
      });
Mystic Dev

JSON Placeholder

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))
Xenophobic Xenomorph

Ответы похожие на “JSON Placeholder”

Вопросы похожие на “JSON Placeholder”

Больше похожих ответов на “JSON Placeholder” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования