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 CodeDescription
200Success
400Bad Request
401Unauthorized
403Forbidden
404Not Found
500Internal Server Error

Error responses include a JSON body:

{
  "error": "ERROR_CODE",
  "message": "Human-readable error message"
}