curl --request GET \
--url https://v3.minestorecms.com/api/settings/getimport requests
url = "https://v3.minestorecms.com/api/settings/get"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v3.minestorecms.com/api/settings/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://v3.minestorecms.com/api/settings/get",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://v3.minestorecms.com/api/settings/get"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://v3.minestorecms.com/api/settings/get")
.asString();require 'uri'
require 'net/http'
url = URI("https://v3.minestorecms.com/api/settings/get")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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"
}
}Webstore Settings
Fetch the current configuration settings of the website, including header, footer, recent donators, top player, donation goals, and more.
curl --request GET \
--url https://v3.minestorecms.com/api/settings/getimport requests
url = "https://v3.minestorecms.com/api/settings/get"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://v3.minestorecms.com/api/settings/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://v3.minestorecms.com/api/settings/get",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://v3.minestorecms.com/api/settings/get"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://v3.minestorecms.com/api/settings/get")
.asString();require 'uri'
require 'net/http'
url = URI("https://v3.minestorecms.com/api/settings/get")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"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
OK
The authentication type used for login. Could be username or in-game
Links displayed in the website header
Show child attributes
Show child attributes
Links displayed in the website footer
Show child attributes
Show child attributes
The name of the website
The description of the website
Server IP and port information for monitoring
Show child attributes
Show child attributes
Indicates whether there is a featured deal on the website
Collecting client data during checkout by using form
List of active donation goals
Show child attributes
Show child attributes
Top donator for the current month
Show child attributes
Show child attributes
List of recent donators
Show child attributes
Show child attributes
URL to the Discord server
Discord Guild ID
Indicates if the referral system is enabled
Indicates if the profile feature is enabled
Indicates if the patrons feature is enabled
Social media links associated with the website
Show child attributes
Show child attributes
Indicates if virtual currency is used
Name of the virtual currency
Indicates if Discord synchronization (OAuth) is enabled for role syncing, so you need to login with Discord and put Discord Data in the Cookie.
The system currency and its value relative to USD
Show child attributes
Show child attributes
List of allowed currencies
Show child attributes
Show child attributes
List of available languages on the website
Show child attributes
Show child attributes
The current system language used by the website
Show child attributes
Show child attributes

