CMS Endpoints
Custom 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
Custom Page
Fetch a page using the provided URL. Returns the page data if found.
POST
/
pages
/
get
curl --request POST \
--url https://v3.minestorecms.com/api/pages/get \
--header 'Content-Type: application/json' \
--data '{
"url": "https://example.com/page1"
}'
{
"success": true,
"page": {
"id": 1,
"title": "Example Page",
"url": "page1",
"content": "This is the content of the page."
}
}
Body
application/json
Response
200
application/json
OK
The response is of type object
.
curl --request POST \
--url https://v3.minestorecms.com/api/pages/get \
--header 'Content-Type: application/json' \
--data '{
"url": "https://example.com/page1"
}'
{
"success": true,
"page": {
"id": 1,
"title": "Example Page",
"url": "page1",
"content": "This is the content of the page."
}
}