🧠 Gameer API Reference

All API endpoints are available via POST. Expect JSON input and output.

🚀 Request Early Access

The Gameer API is currently in private beta. Join our exclusive waitlist to be among the first developers to create AI-powered games and get early access to our comprehensive API suite.

Exclusive Access

Be the first to create immersive games and worlds with Gameer

By joining, you agree to receive updates about Gameer. Unsubscribe anytime.

Already have access? Jump to API docs

📚 API Reference

POST /generate/code

Generates game logic and components from a validated schema.

Input:

{
  "schema": { ... }, // full game schema JSON
  "target": "phaser" // or "unity", "json"
}

Response:

{
  "success": true,
  "files": {
    "main.ts": "...",
    "components/Player.ts": "...",
    ...
  }
}