API Reference
The Forte Platforms API provides programmatic access to all platform features.
Overview
The API is organized around REST principles with:
- Predictable resource-oriented URLs
- JSON-encoded request and response bodies
- Standard HTTP response codes and verbs
Base URL
https://api.forteplatforms.com
Authentication
All API requests require authentication via session cookies. See the Authentication guide for details.
API Sections
Authentication
Session-based authentication with Google OAuth.
Projects
Create and manage projects.
Deployments
Deploy and monitor your services.
Rate Limits
API rate limits are currently 1000 requests per minute per account.
Error Handling
The API uses standard HTTP status codes:
| Status Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request |
| 401 | Unauthorized |
| 403 | Forbidden |
| 404 | Not Found |
| 500 | Internal Server Error |
Error responses include a JSON body:
{
"error": "ERROR_CODE",
"message": "Human-readable error message"
}