Skip to main content
API Reference Platform

Platform Endpoints

3 utility endpoints: check what features the server supports, sign up for the Pro waitlist, and verify the server is running.

JWT set Key set No credentials set

Platform

3

Return machine-readable server capabilities for adaptive CLI behavior.

Response

FieldTypeDescription
app_name string Application display name*
api_version string Current API version*
features object Feature flags and client-safe capabilities*
cli object Recommended CLI version and structured output formats*

                    
                

Response 200 OK

{
  "app_name": "RESTume",
  "api_version": "1.0.0",
  "features": {
    "structured_cli_output": true,
    "owner_bearer_auth": true
  },
  "cli": {
    "recommended_min_version": "0.2.0",
    "structured_output_formats": ["json", "yaml", "tsv"]
  }
}

Capture interest in the Pro plan waitlist.

Request Body

FieldTypeDescription
email string Signup email*
source string pricing, dashboard, or banner
challenge_token string Optional anti-bot clearance token

Response

FieldTypeDescription
message string Stable success response*

                    
                

Request

{
  "email": "you@example.com",
  "source": "pricing"
}

Response 200 OK

{
  "message": "Thanks. We'll email you when Pro launches."
}

Operational health probe for uptime checks.

Response

FieldTypeDescription
status string Health status string*
app string Application name*
version string Current version*

                    
                

Response 200 OK

{
  "status": "healthy",
  "app": "restume",
  "version": "1.0.0"
}