> ## Documentation Index
> Fetch the complete documentation index at: https://doc.eazemyapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Backend architecture for startup mvp

Modern backend platforms now include AI-assisted development to simplify backend architecture.

With EazeMyAPI, you do not need to manually design database schemas or write backend APIs.

Workflow:

Describe your app → AI creates database → APIs ready instantly.

***

## How AI Backend Generation Works

### Step 1 — Describe Your Application

Instead of designing the backend manually, you describe your application idea.

Example prompt:

```
Create a backend for a social media app with users, posts, comments and likes.
```

***

### Step 2 — AI Generates Database Tables

EazeMyAPI automatically creates:

* Database tables
* Table fields
* Relationships between tables

Example generated tables:

Users
Posts
Comments
Likes

You can modify or extend these tables anytime.

Guide:

[Creating Tables](../docs/create-tables)

***

### Step 3 — APIs Are Generated Automatically

Once tables are created, REST APIs are generated instantly.

Example endpoints:

```
GET /posts
POST /posts
PUT /posts/{id}
DELETE /posts/{id}
```

Guide:

[Generating APIs](../docs/generate-api)

***

### Step 4 — Connect Your Frontend

Your frontend application can now connect to the generated APIs.

Supported frameworks include:

* React
* Next.js
* Flutter
* Android
* iOS

Guide:

[Frontend Integration](../docs/frontend-integration)
