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.

Request

This operation has no request body or parameters.

No request fields.

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

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": "https://docs.fast-transcriber.com/api-reference",
    "mcp": "/api/mcp",
    "name": "Fast Transcriber API",
    "version": "v1"
  }
}

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.

Implementation notes

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

© 2026 FastTranscriberBuilt for developers who work with speech.