Mega Man Maker API
The Mega Man Maker API is a backend REST end point to allow people to write their own queries to get data from the Official Mega Man Maker Server.
Below is a list of publically accessible routes.
Get Random Level(s)
GET: https://api.megamanmaker.com/level/sample
| Param | Data Type | Required |
|---|---|---|
| size | Number (1-10) | false |
Get Level by ID
GET: https://api.megamanmaker.com/level/{id}
| No Params |
|---|
Download a level
GET: https://api.megamanmaker.com/level/download/{id}
| No Params |
|---|
Get User Stats
GET: https://api.megamanmaker.com/level/user/{user-id}
| No Params |
|---|
Search for a level
GET: https://api.megamanmaker.com/level/search
| Param | Data Type | Required |
|---|---|---|
| size | Number (1-10) | false |
| search | String | false |
| size | Number (1-10) | false |
Get User Deaths
GET: https://api.megamanmaker.com/user/deaths/{user-id}
| No Params |
|---|