Garden Horizons Stock API
Dokumentasi resmi Garden Horizons Stock API dari Maelyn API untuk mengambil data stock seeds, gear, dan weather terbaru dari Garden Horizons
Base Information
- BASE_URL_API:
https://api.maelyn.eu - Path / Endpoint:
/game/roblox/gardenhorizons/stock - Full URL:
https://api.maelyn.eu/game/roblox/gardenhorizons/stock - Method:
GET - Credit Usage:
1
Authentication
Gunakan header berikut pada setiap request:
maelyn_auth: YOUR_API_KEY
Query Parameters
Endpoint ini tidak memerlukan query parameter.
Example Request
GET /game/roblox/gardenhorizons/stock
Example Usage
GET /game/roblox/gardenhorizons/stock
Success Response
{
"success": true,
"stock": {
"seeds": [
{
"name": "Carrot",
"quantity": 12
},
{
"name": "Pumpkin",
"quantity": 4
}
],
"gear": [
{
"name": "Watering Can",
"quantity": 2
}
],
"weather": {
"type": "Rain",
"active": true,
"endTimestamp": 1770000000,
"remainingSeconds": 320,
"effects": ["growth_boost"],
"lastUpdated": 1769999680
},
"weatherHistory": [
{
"type": "Sunny",
"active": false,
"endTimestamp": 1769999000,
"remainingSeconds": 0,
"effects": [],
"lastUpdated": 1769998500
}
],
"lastGlobalUpdate": 1770000100
}
}
Error Response
Stock Not Found
{
"success": false,
"message": "Gagal mengambil stock Garden Horizons"
}
Internal Server Error
{
"success": false,
"message": "Internal server error"
}
Playground