# jsonplaceholder.typicode.com
fetch("https://jsonplaceholder.typicode.com/todos/1")
.then((response) => response.json())
.then((json) => console.log(json));
// response:
// {
// "userId": 1,
// "id": 1,
// "title": "delectus aut autem",
// "completed": false
// }
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
- JSONPlaceholder comes with a set of 6 common resources:
/posts 100 posts/comments 500 comments/albums 100 albums/photos 5000 photos/todos 200 todos/users 10 users
- All HTTP methods are supported. You can use http or https for your requests.
GET /postsGET /posts/1GET /posts/1/commentsGET /comments?postId=1POST /postsPUT /posts/1PATCH /posts/1DELETE /posts/1
# Mockjs
http://mockjs.com/ (opens new window)
# fakeimg.pl
<img src="https://fakeimg.pl/300/" />
<img src="https://fakeimg.pl/250x100/" />
<img src="https://fakeimg.pl/250x100/ff0000/" />
<img src="https://fakeimg.pl/350x200/ff0000/000" />
<img src="https://fakeimg.pl/350x200/ff0000,128/000,255" />
<img src="https://fakeimg.pl/350x200/?text=Hello" />
<img src="https://fakeimg.pl/200x100/?retina=1&text=こんにちは&font=noto" />
<img src="https://fakeimg.pl/350x200/?text=World&font=lobster" />
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8