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 OKAuthentication
Public endpoint
This discovery operation does not require an API key.
Request
This operation has no request body or parameters.
No request fields.
curl https://fast-transcriber.com/api/v1Response
Successful JSON responses use a top-level data envelope. A 204 response has no body.
| Field | Type | Description |
|---|---|---|
data.name | string | Public API name. |
data.version | string | Current major API version. |
data.documentation | string | Path to the OpenAPI 3.1 document. |
data.human_documentation | string | Path to human-readable API documentation. |
data.mcp | string | Path to the hosted MCP endpoint. |
{
"data": {
"documentation": "/api/v1/openapi",
"human_documentation": "/api/docs/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.