REST endpoint

Get API information

Use the unauthenticated API root as a lightweight discovery endpoint. It identifies v1 and links to the OpenAPI document, human documentation, and hosted MCP endpoint.

GET/api/v1200 OK

Authentication

Public endpoint
This discovery operation does not require an API key.
Input

Request

This operation has no request body or parameters.

No request fields.

cURL
curl https://fast-transcriber.com/api/v1
200 OK

Response

Successful JSON responses use a top-level data envelope. A 204 response has no body.

FieldTypeDescription
data.namestringPublic API name.
data.versionstringCurrent major API version.
data.documentationstringPath to the OpenAPI 3.1 document.
data.human_documentationstringPath to human-readable API documentation.
data.mcpstringPath to the hosted MCP endpoint.
Response
{
  "data": {
    "documentation": "/api/v1/openapi",
    "human_documentation": "/api/docs/api-reference",
    "mcp": "/api/mcp",
    "name": "Fast Transcriber API",
    "version": "v1"
  }
}
Stable envelope

Errors

API errors return a machine-readable code and message.

No endpoint-specific errors
Normal HTTP transport failures may still occur, but this public discovery endpoint has no authenticated resource errors.
Production guidance

Implementation notes

The operation is safe to use as documented without a separate workflow step.

© 2026 FastTranscriberBuilt for developers who work with speech.