CMS Endpoints
Patrons Page
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
Patrons Page
Retrieves the list of patrons based on their contributions.
GET
/
patrons
/
get
curl --request GET \
--url https://v3.minestorecms.com/api/patrons/get
{
"success": true,
"currency_code": "USD",
"description": "Support our project by becoming a patron!",
"top_patrons": [
{
"username": "john_doe",
"amount": 150.5
}
],
"patrons": {}
}
Response
200
application/json
Successful response
The response is of type object
.
curl --request GET \
--url https://v3.minestorecms.com/api/patrons/get
{
"success": true,
"currency_code": "USD",
"description": "Support our project by becoming a patron!",
"top_patrons": [
{
"username": "john_doe",
"amount": 150.5
}
],
"patrons": {}
}