API Endpoints
Unlike the rest of the API endpoints, the Marketplace runs on its own instance at https://marketplace.muetab.com with source code available at https://github.com/mue/marketplace. This is because the repository also contains the content for the marketplace as well as the source code. Ratelimits for all routes are 50 requests per minute.
/
https://marketplace.muetab.com
Returns hello world message.
Response
{
"message": "Hello World"
}
Get All Items
https://marketplace.muetab.com/all
This endpoint returns all marketplace items with description and data removed. The information is used by the marketplace homepage in versions prior to 5.2 so there is only data it requires in this endpoint. The endpoint may be removed in the future.
Response
{
"data": {
"settings": [],
"photo_packs": [{
"name": "crunchyroll_hime",
"display_name": "Crunchyroll Hime",
"icon_url": "https://upload.wikimedia.org/wikipedia/en/thumb/f/f6/Crunchyroll_Logo.svg/1200px-Crunchyroll_Logo.svg.png",
"author": "David"
}],
"quote_packs": []
}
}
Get Category Items
https://marketplace.muetab.com/items/:category
This endpoint returns all marketplace items in a category with description and data removed. The information is used by the marketplace homepage in 5.2+ so there is only data it requires in this endpoint.
Request
Parameter | Type | Info |
---|---|---|
category | string | Category to search in |
Response
{
"data": [{
"name": "crunchyroll_hime",
"display_name": "Crunchyroll Hime",
"icon_url": "https://upload.wikimedia.org/wikipedia/en/thumb/f/f6/Crunchyroll_Logo.svg/1200px-Crunchyroll_Logo.svg.png",
"author": "David"
}]
}
Get Item
https://marketplace.muetab.com/item/:category/:name
This endpoint allows you to get an image. If ID or category aren't specified it will return a random image from all categories.
Request
Parameter | Type | Info |
---|---|---|
name | string | Name of item to search for |
category | string | Category to search in |
Response
{
"data": {
"name": "Crunchyroll Hime",
"description": "removed\ntest https://google.com",
"icon_url": "https://upload.wikimedia.org/wikipedia/en/thumb/f/f6/Crunchyroll_Logo.svg/1200px-Crunchyroll_Logo.svg.png",
"screenshot_url": "https://i.imgur.com/IUqFr8s.png",
"type": "photos",
"verified": false,
"version": "1.0.0",
"author": "David",
"photos": [{"removed": "see https://docs.muetab.com/marketplace/create#photo-packs"}]
}
}
Get Featured
https://marketplace.muetab.com/featured
This endpoint returns the featured information for the section on the marketplace screen.
Response
{
"data": {
"title": "FEATURE CHANGELOG",
"name": "MUE MARKETPLACE",
"buttonText": "READ BLOG",
"buttonLink": "https://blog.muetab.com/posts/mue-marketplace/",
"colour": "#ff7f50"
}
}