Super simple JSON API in Korean.
Request GET, POST, PUT, DELETE actions and get JSON data in Korean back to get
the most out of the look and feel of Korean language when prototyping your project.
한국어 데이터를 제공하는 초간단 JSON API.
GET, POST, PUT, DELETE 요청을 보내고 한국어 데이터를 받으세요. 라틴어이자 알파벳 문자인 로렘입섬 대신 한글 데이터를 사용하면 프로토타이핑을 조금 더 현실적인 환경에서, 조금 더
빠르고 즐겁게
할
수 있습니다.
This project is heavily inspired by JSONPlaceholder of which we have been big fans for a long
time.
저희는 JSONPlaceholder의 오랜 사용자이자 팬으로서 한국어 사용자들을 대상으로 제작하였습니다.
KoreanJSON has processed 22,438,911 API requests since February 2019.
KoreanJSON은 2019년 2월 이후로 22,438,911번의 API 요청을 처리하였습니다.
fetch('https://koreanjson.com/posts/1')
.then(response => response.json())
.then(json => console.log(json))
.catch(error => console.log(error));
Endpoint | Method | Action |
---|---|---|
/users | GET | 유저 목록 |
/users | POST | 유저 생성 |
/users/:id | GET | 유저 조회 |
/users/:id | PUT | 유저 수정 |
/users/:id | DELETE | 유저 삭제 |
/posts | GET | 포스트 목록 |
/posts?userId={id} | GET | 유저별 포스트 목록 |
/posts | POST | 포스트 생성 |
/posts/:id | GET | 포스트 조회 |
/posts/:id | PUT | 포스트 수정 |
/posts/:id | DELETE | 포스트 삭제 |
/todos | GET | 할 일 목록 |
/todos?userId={id} | GET | 유저별 할 일 목록 |
/todos | POST | 할 일 생성 |
/todos/:id | GET | 할 일 조회 |
/todos/:id | PUT | 할 일 수정 |
/todos/:id | DELETE | 할 일 삭제 |
/comments | GET | 댓글 목록 |
/comments?userId={id} | GET | 유저별 댓글 목록 |
/comments?postId={id} | GET | 포스트별 댓글 목록 |
/comments/:id | GET | 댓글 조회 |
/comments/:id | PUT | 댓글 수정 |
/comments/:id | DELETE | 댓글 삭제 |