🖼️ Asset Uploader

Upload images or sprites to attach them to characters, backgrounds, or tilemaps in your game. Assets will be linked to your schema or level config.

📤 Endpoint

POST /upload/assets

{
  "file": "base64-encoded-image",
  "type": "sprite" // or "tile", "background", "icon"
}

🗃️ Storage & Access

Uploaded files will be stored securely and assigned a unique CDN URL. You’ll receive a link to use directly inside your JSON schema or level config.

🧪 Sample Response

{
  "success": true,
  "url": "https://cdn.gameer.io/assets/user123/rock_sprite.png"
}