Get started

Welcome to the documentation for FreeTTY API.

FreeTTY API is a REST-style service platform that you can use to:

  • Validate service availability before rollout
  • Integrate approved clients with authenticated endpoints
  • Inspect platform behavior and reference request patterns

FreeTTY API uses standard HTTPS requests. Responses are typically returned in JSON format.

To access FreeTTY API, you need valid credentials and an approved integration path.

The base URL is https://api.freetty.com.

Authentication

Include a valid bearer token with all production requests. Credentials should be stored securely and never embedded in public client-side code.

Use the Authorization header when sending authenticated requests:

Authorization: Bearer <token>

Example request

GET /v1/status
Host: api.freetty.com
Accept: application/json
Authorization: Bearer <token>


Improve this page