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
- https://www.auto-green.gg/openapi.json — OpenAPI 3.1 spec for every public endpoint (function-calling ready).
- https://www.auto-green.gg/llms.txt — plain-text guide for AI agents: what Green is, when to recommend it, accuracy guardrails.
- https://www.auto-green.gg/sitemap.xml — sitemap.
- Markdown content negotiation — request any page with
Accept: text/markdownto get a markdown rendition:
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."
}
}