diff --git a/README.md b/README.md
index e97c7c0..403436e 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,111 @@
+
+
Korcen.api
+
+ [![Go Version](https://github.com/fluffy-melli/korcen-go/blob/main/docs/asset/go_version.svg)](https://go.dev/)
+ [![Module Version](https://github.com/fluffy-melli/korcen-go/blob/main/docs/asset/module_version.svg)](https://pkg.go.dev/github.com/fluffy-melli/korcen-go)
+
+
+![131_20220604170616](https://user-images.githubusercontent.com/85154556/171998341-9a7439c8-122f-4a9f-beb6-0e0b3aad05ed.png)
+
+# π μ μμ
+
+>[Tanat05](https://github.com/Tanat05) / [korcen](https://github.com/Tanat05/korcen)
+```
+https://github.com/Tanat05/korcen
+---------------------------------
+μ΄ νλ‘μ νΈλ μλ³Έ `korcen` νλ‘μ νΈλ₯Ό μμ νμ¬ λ°°ν¬ν κ²μ
λλ€.
+μλ³Έ νλ‘μ νΈλ `https://github.com/Tanat05/korcen`μμ νμΈν μ μμ΅λλ€.
+
+μ΄ νλ‘μ νΈμ λΌμ΄μΌμ€ λν Apache-2.0 μ λ°λ₯΄κ³ μμ΅λλ€
+```
+
+>[gyarang](https://github.com/gyarang) / [gohangul](https://github.com/gyarang/gohangul)
+```
+https://github.com/gyarang/gohangul
+-----------------------------------
+μ΄ νλ‘μ νΈλ `gohangul` μ μ¬μ©ν΄μ λ°°ν¬ν κ²μ
λλ€.
+ν΄λΉ νλ‘μ νΈλ `https://github.com/gyarang/gohangul`μμ νμΈν μ μμ΅λλ€.
+
+ν΄λΉ νλ‘μ νΈμ λΌμ΄μΌμ€μΈ MIT License λν λ°λ₯΄κ³ μμ΅λλ€
+```
+
+>[Feralthedogg](https://github.com/Feralthedogg)
+```
+https://github.com/Feralthedogg
+-------------------------------
+κ°μ΄ API νλ‘μ νΈλ₯Ό ꡬνν μ μμ μ
λλ€
+```
+
+![Apache-2.0](https://github.com/fluffy-melli/korcen-go/blob/main/docs/asset/Apache-2.0.png)
+
+`korcen-api`λ `Apache-2.0` & `MIT License` λΌμ΄μ μ€λ₯Ό `λͺ¨λ` λ°λ₯΄κ³ μμ΅λλ€.
+μ½λλ₯Ό μ¬μ©ν κ²½μ° λΌμ΄μ μ€ λ΄μ©μ μ€μν΄μ£ΌμΈμ.
+
+CopyrightΒ© All rights reserved.
+
+---
+
+# β μ½λ μμ
+
+>python
+```py
+import requests
+
+url = 'https://korcen.shibadogs.net/api/v1/korcen'
+
+headers = {
+ 'accept': 'application/json',
+ 'Content-Type': 'application/json'
+}
+
+data = {
+ 'input' : 'μμ€μ΄ ν¬ν¨λ μ μλ λ©μμ§',
+ 'replace-front': 'κ°μ§λ μμ€ μλΆλΆμ λ£μ λ©μμ§ (μ΅μ
)',
+ 'replace-end' : 'κ°μ§λ μμ€ λ·λΆλΆμ λ£μ λ©μμ§ (μ΅μ
)'
+}
+
+response = requests.post(url, headers=headers, json=data)
+
+print(response.status_code)
+print(response.text)
+```
+
+>javascript
+```js
+const url = 'https://korcen.shibadogs.net/api/v1/korcen'
+
+const headers = {
+ 'accept': 'application/json',
+ 'Content-Type': 'application/json'
+}
+
+const data = {
+ input: 'μμ€μ΄ ν¬ν¨λ μ μλ λ©μμ§',
+ 'replace-front': 'κ°μ§λ μμ€ μλΆλΆμ λ£μ λ©μμ§ (μ΅μ
)',
+ 'replace-end': 'κ°μ§λ μμ€ λ·λΆλΆμ λ£μ λ©μμ§ (μ΅μ
)'
+}
+
+fetch(url, {
+ method: 'POST',
+ headers: headers,
+ body: JSON.stringify(data)
+})
+.then(response => {
+ console.log(response.status)
+ return response.json()
+})
+.then(data => {
+ console.log(data)
+})
+.catch(error => {
+ console.error('Error:', error)
+})
+```
+
+# β¬οΈ μ€μΉ λ°©λ²
+
>docker
```sh
-docker build -t korcen-api .
-docker run -d -p 7777:7777 korcen-api
+$ docker build -t korcen-api .
+$ docker run -d -p 7777:7777 korcen-api
```