Mega Man Maker API: Difference between revisions
Jump to navigation
Jump to search
Created page with "The '''Mega 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 public..." |
(No difference)
|
Revision as of 17:01, 29 June 2022
The Mega 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 |
|---|