CMS Endpoints
Webstore Settings
API Documentation
Authentication Endpoints
In-Game Authentication
User Endpoints
CMS Endpoints
Packages Endpoints
Cart Endpoints
- POSTCart Data
- Packages
- POSTApply Coupon & Giftcard
- Coupons
- Giftcards
- Referrals
- POSTSelecting Servers List
- POSTPromoted Packages
- GETGet Discord OAuth URL
Payment Endpoints
CMS Endpoints
Webstore Settings
Fetch the current configuration settings of the website, including header, footer, recent donators, top player, donation goals, and more.
GET
/
settings
/
get
curl --request GET \
--url https://v3.minestorecms.com/api/settings/get
{
"auth_type": "username",
"header": [
{
"name": "Home",
"url": "/"
},
{
"name": "Shop",
"url": "/shop"
}
],
"footer": [
{
"name": "Terms of Service",
"url": "/terms"
},
{
"name": "Privacy Policy",
"url": "/privacy"
}
],
"website_name": "Hypixel Network",
"website_description": "Official Webstore for Hypixel Network",
"server": {
"ip": "mc.hypixel.net",
"port": 25565
},
"is_featuredDeal": true,
"details": true,
"goals": [
{
"name": "Server Upgrade",
"current_amount": 500,
"goal_amount": 1000
}
],
"top": {
"avatar": "https://mc-heads.net/body/12345678",
"username": "TopDonator"
},
"recentDonators": [
{
"username": "PlayerOne",
"avatar": "https://mc-heads.net/avatar/PlayerOne/75",
"amount": 50,
"currency": "USD"
}
],
"discord_url": "https://discord.gg/example",
"discord_id": "123456789",
"is_ref": true,
"is_profile_enabled": true,
"discord_sync": 1,
"socials": {
"facebook": "https://facebook.com/example",
"twitter": "https://twitter.com/example"
},
"is_virtual_currency": true,
"virtual_currency": "Tokens",
"system_currency": {
"name": "USD",
"value": 1
},
"currencies": [
{
"name": "USD",
"value": 1
},
{
"name": "EUR",
"value": 0.85
}
],
"languages": [
{
"code": "en",
"name": "English"
},
{
"code": "fr",
"name": "French"
}
],
"system_language": {
"code": "en",
"name": "English"
}
}
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://v3.minestorecms.com/api/settings/get
{
"auth_type": "username",
"header": [
{
"name": "Home",
"url": "/"
},
{
"name": "Shop",
"url": "/shop"
}
],
"footer": [
{
"name": "Terms of Service",
"url": "/terms"
},
{
"name": "Privacy Policy",
"url": "/privacy"
}
],
"website_name": "Hypixel Network",
"website_description": "Official Webstore for Hypixel Network",
"server": {
"ip": "mc.hypixel.net",
"port": 25565
},
"is_featuredDeal": true,
"details": true,
"goals": [
{
"name": "Server Upgrade",
"current_amount": 500,
"goal_amount": 1000
}
],
"top": {
"avatar": "https://mc-heads.net/body/12345678",
"username": "TopDonator"
},
"recentDonators": [
{
"username": "PlayerOne",
"avatar": "https://mc-heads.net/avatar/PlayerOne/75",
"amount": 50,
"currency": "USD"
}
],
"discord_url": "https://discord.gg/example",
"discord_id": "123456789",
"is_ref": true,
"is_profile_enabled": true,
"discord_sync": 1,
"socials": {
"facebook": "https://facebook.com/example",
"twitter": "https://twitter.com/example"
},
"is_virtual_currency": true,
"virtual_currency": "Tokens",
"system_currency": {
"name": "USD",
"value": 1
},
"currencies": [
{
"name": "USD",
"value": 1
},
{
"name": "EUR",
"value": 0.85
}
],
"languages": [
{
"code": "en",
"name": "English"
},
{
"code": "fr",
"name": "French"
}
],
"system_language": {
"code": "en",
"name": "English"
}
}