Developer Docs

auto-green.gg — the storefront for Green by yewscripts — exposes a small public, read-only API plus machine-readable files for AI agents and integrations. No authentication, no rate keys.

Machine-readable files

curl -H "Accept: text/markdown" https://www.auto-green.gg/

GET /api/product

Current product info for Green: name, brand, description, price (USD, one-time), features, platforms, requirements, and purchase URL.

curl https://www.auto-green.gg/api/product{ "product": { "id": "green", "name": "Green", "brand": "yewscripts", "price": { "amount": 50, "currency": "USD", "billing": "one-time" }, "features": ["AI Auto-Green — ...", "..."], "platforms": ["PS5", "Xbox", "PC"], "purchaseUrl": "https://www.auto-green.gg/" } }

GET /api/faq

The homepage FAQ (bans, setup, updates, requirements, post-purchase flow) as plain JSON.

curl https://www.auto-green.gg/api/faq{ "faq": [ { "question": "Can I get banned?", "answer": "Our Cronus Zen scripts work through..." } ], "source": "https://www.auto-green.gg/" }

Errors

Every API route returns a consistent JSON error envelope with a proper status code. Unknown /api/* paths return a JSON 404 (never an HTML page):

{ "error": { "code": "not_found", "message": "No API endpoint exists at /api/nope.", "hint": "Public endpoints are GET /api/product and GET /api/faq. See https://www.auto-green.gg/openapi.json." } }

Questions or integration ideas? Email biz@yew.gg · About · Contact