๐ŸŒฑ GAG Stock API

Grow-a-Garden Stock Management System

๐Ÿ“š API Overview

The GAG Stock API provides real-time access to garden stock information including eggs, gear, seeds, honey, cosmetics, and traveling merchant data.

๐Ÿ”— Base URL

https://gagstock.gleeze.com

๐Ÿ”Œ WebSocket

wss://gagstock.gleeze.com

๐Ÿ› ๏ธ Endpoints

GET /grow-a-garden

Retrieves current stock information for all categories.

Response Format

{
  "status": "success",
  "updated_at": "2025-08-03T08:55:05.825Z",
  "data": {
    "egg": { ... },
    "gear": { ... },
    "seed": { ... },
    "honey": { ... },
    "cosmetics": { ... },
    "travelingmerchant": { ... }
  }
}

๐Ÿ“‹ Data Structure

๐Ÿท๏ธ Standard Category (egg, gear, seed, honey, cosmetics)

{
  "items": [
    {
      "name": "Item Name",
      "quantity": 1,
      "emoji": "๐Ÿฅš"
    }
  ],
  "countdown": "00h 04m 55s"
}

๐Ÿšถ Traveling Merchant

{
  "items": [...],
  "countdown": null,
  "status": "leaved",
  "appearIn": "03h 04m 55s",
  "merchantName": "Sky Merchant"
}

๐Ÿ“„ Complete Example Response