diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d5aafc0
--- /dev/null
+++ b/README.md
@@ -0,0 +1,65 @@
+# MinigamesAPI
+
+[![Build Status](https://github.com/xFedeT/MinigamesAPI/actions/workflows/gradle.yml/badge.svg)](https://github.com/xFedeT/MinigamesAPI/actions?query=branch%3Amain)
+[![Code Climate](https://codeclimate.com/github/xFedeT/MinigamesAPI/badges/gpa.svg)](https://codeclimate.com/github/xFedeT/MinigamesAPI)
+![Visitors](https://visitor-badge.laobi.icu/badge?page_id=xFedeT.MinigamesAPI)
+
+A Minigame Plugin/API core that allow to create custom Minigame
+
+- Simple to use
+- Lightweight
+- Flexible
+- Null-safe
+- Better performance
+- Better optimization
+
+
+## How it works
+
+
+### Integration
+Start using MinigamesAPI by adding this to your pom.xml:
+```xml
+
+
+ JitPack
+ https://jitpack.io
+
+
+
+
+
+ com.github.xFedeT
+ MinigamesAPI
+ VERSION
+
+
+```
+
+or build.gradle:
+```kotlin
+ repositories {
+ maven { url 'https://jitpack.io' }
+ }
+
+ dependencies {
+ implementation 'com.github.xFedeT:MinigamesAPI:VERSION'
+ }
+```
+
+### Getting Started
+
+**Getting MinigamesAPI in you project**
+```java
+public class YourPlugin extends JavaPlugin implements Minigame {
+ @Override
+ public void onEnable() {
+ minigamesAPI = MinigamesProvider.get();
+ minigamesAPI.registerMinigame(this);
+ }
+}
+```
+:pencil: Read the full documentation in the [MinigamesAPI Wiki](https://github.com/xFedeT/MinigamesAPI/wiki).
+
+:pencil: See a full working example based on this
+[here](https://github.com/xFedeT/MinigamesAPI/tree/main/sumo).