Computer Science/Project를 위한 잡다한 것

Rest api 연습용 서비스- Json placeholder , Mockend

728x90
반응형

json placeholder

 

사용할 수 있는 데이터소스들

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

posts

[
  {
    "userId": 1,
    "id": 1,
    "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
    "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
  },
....

]

 

 

 

접근 주소(Routes)들

All HTTP methods are supported. You can use http or https for your requests.

GET /posts
GET /posts/1
GET /posts/1/comments
GET /comments?postId=1
POST /posts
PUT /posts/1
PATCH /posts/1
DELETE /posts/1

사용 가이드도 자세히 나와있다. 

 

 

공식 홈페이지 : jsonplaceholder.typicode.com/

 

JSONPlaceholder - Free Fake REST API

{JSON} Placeholder Free fake API for testing and prototyping. Powered by JSON Server + LowDB As of Dec 2020, serving ~1.8 billion requests each month.

jsonplaceholder.typicode.com


Mockend

 

 

 

 

공식 홈페이지 : mockend.com/

 

Mockend - Mock your REST or GraphQL API

Any project Zero install, use it for any project: iOS, Android, JavaScript, Python, etc.

mockend.com

 

 
728x90
반응형