Skip to main content
GET
/
settings
/
get
Retrieve website settings
curl --request GET \
  --url https://v3.minestorecms.com/api/settings/get
import 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

auth_type
string

The authentication type used for login. Could be username or in-game

header
object[]

Links displayed in the website header

Links displayed in the website footer

website_name
string

The name of the website

website_description
string

The description of the website

server
object

Server IP and port information for monitoring

Indicates whether there is a featured deal on the website

details
boolean

Collecting client data during checkout by using form

goals
object[]

List of active donation goals

top
object

Top donator for the current month

recentDonators
object[]

List of recent donators

discord_url
string

URL to the Discord server

discord_id
string

Discord Guild ID

is_ref
boolean

Indicates if the referral system is enabled

is_profile_enabled
boolean

Indicates if the profile feature is enabled

is_patrons_enabled
boolean

Indicates if the patrons feature is enabled

socials
object

Social media links associated with the website

is_virtual_currency
boolean

Indicates if virtual currency is used

virtual_currency
string

Name of the virtual currency

discord_sync
boolean

Indicates if Discord synchronization (OAuth) is enabled for role syncing, so you need to login with Discord and put Discord Data in the Cookie.

system_currency
object

The system currency and its value relative to USD

currencies
object[]

List of allowed currencies

languages
object[]

List of available languages on the website

system_language
object

The current system language used by the website