Developer Overview
You're a developer. Here's how to use AppEngine.
What You Get
AppEngine API at appengine.appmint.io
with these endpoints:
- Repository operations (CRUD)
- Authentication
- CRM features
- File management
- AI endpoints
How to Use It
- Get credentials (APP_ID, APP_KEY, APP_SECRET)
- Configure
.env.local
- Use the proxy route at
/api/[...slug]
- Make API calls
Example
// Through the proxy (client-side)
const response = await fetch('/api/repository/get/users');
// Using AppEngineClient (server-side)
const client = getAppEngineClient();
const result = await client.processRequest('GET', 'repository/get/users');
No SDKs
There are no SDKs. No CLI. No packages to install.
- Just the proxy route
- Just the AppEngineClient in this project
- That's it
Documentation
- API Reference - Actual endpoints
- AppEngine Integration - How to connect
Stop looking for SDKs that don't exist.