Developer Overview

How to use AppEngine API

Appmint Team9/14/2025

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

  1. Get credentials (APP_ID, APP_KEY, APP_SECRET)
  2. Configure .env.local
  3. Use the proxy route at /api/[...slug]
  4. 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

Stop looking for SDKs that don't exist.