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 25,261,447 API requests since February 2019.
KoreanJSON? 2019? 2? ??? 25,261,447?? 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 | ?? ?? |