diff --git a/readme.md b/readme.md
index 4deb3f3..5ee9e62 100644
--- a/readme.md
+++ b/readme.md
@@ -65,19 +65,20 @@ You can fork or edit this source code !
### Current API
You can check [docs/openapi.yml](./docs/openapi.yaml) for detail API
-| Feature | Menu | Method | URL | Payload |
-|---------|-------------------------|--------|------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| ✅ | Login | GET | /app/login | |
-| ✅ | Logout | GET | /app/logout | |
-| ✅ | Reconnect | GET | /app/reconnect | |
-| ✅ | User Info | GET | /user/info |
| Param | Type | Type | Example |
| phone | string | querystring | 6289685024099 |
|
-| ✅ | User Avatar | GET | /user/avatar | | Param | Type | Type | Example |
| phone | string | querystring | 6289685024099 |
|
-| ✅ | User My Group List | GET | /user/my/groups | |
-| ✅ | User My Privacy Setting | GET | /user/my/privacy | |
-| ✅ | Send Message (Text) | POST | /send/message | | Param | Data Type | Type | Example |
| phone | string | form-data | 6289685024099 |
| message | string | form-data | Hello guys this is testing |
| type | string (user/group) | form-data | user |
|
-| ✅ | Send Message (Image) | POST | /send/image | | Param | Type | Type | Example |
| phone | string | form-data | 6289685024099 |
| caption | string | form-data | Hello guys this is caption |
| view_once | bool | form-data | false |
| image | binary | form-data | image/jpg,image/jpeg,image/png |
| type | string (user/group) | form-data | user |
|
-| ✅ | Send Message (File) | POST | /send/file | | Param | Type | Type | Example |
|---|
| phone | string | form-data | 6289685024099 |
| file | binary | form-data | any (max: 10MB) |
| type | string (user/group) | form-data | user |
|
-| ❌ | Send Message (Video) | POST | /send/video | | Param | Type | Type | Example |
|---|
| phone | string | form-data | 6289685024099 |
| video | binary | form-data | mp4/avi/mkv |
| type | string (user/group) | form-data | user |
|
+| Feature | Menu | Method | URL |
+|---------|-------------------------|--------|------------------|
+| ✅ | Login | GET | /app/login |
+| ✅ | Logout | GET | /app/logout |
+| ✅ | Reconnect | GET | /app/reconnect |
+| ✅ | User Info | GET | /user/info |
+| ✅ | User Avatar | GET | /user/avatar |
+| ✅ | User My Group List | GET | /user/my/groups |
+| ✅ | User My Privacy Setting | GET | /user/my/privacy |
+| ✅ | Send Message | POST | /send/message |
+| ✅ | Send Image | POST | /send/image |
+| ✅ | Send File | POST | /send/file |
+| ✅ | Send Video | POST | /send/video |
+| ❌ | Send Contact | POST | /send/contact |
```
✅ = Available