📚 Docs
🧩 API Reference
Access the full API endpoints and parameters for integrating with AppVerse.
POST /api/v1/apps/deploy
Deploy a new application instance.
curl -X POST https://api.appverse.tech/v1/apps/deploy \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{ "appId": "123", "env": "production" }'SDK Example (JavaScript)
Use our official SDK to call AI endpoints directly from your app.
import AppVerse from "appverse-sdk";
const client = new AppVerse("YOUR_API_KEY");
const result = await client.ai.generate("Describe a finance app");
console.log(result);cURL Example
Quick API testing using standard CLI commands.
curl -X POST "https://api.appverse.tech/v1/ai/generate" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{"prompt":"Generate app idea"}'Response Example
Typical response object from a successful deployment request.
{
"status": "success",
"deploymentId": "dep_abc123",
"url": "https://yourapp.appverse.technology"
}