Quick Start
Create an account, get an API key, and make your first transcription request in under 5 minutes.
1. Create an Account
Sign up at tmr.one/auth/signup. You will receive a verification email -- click the link to activate your account.
2. Create an Organization
After signing in, you will be prompted to create an organization. This is your billing and team management container. API keys and usage are scoped to organizations.
3. Generate an API Key
Navigate to Dashboard → API Keys and click Create API Key. Give it a name and copy the key -- it is shown only once. Your key will look like: tmr_sk_...
4. Transcribe Audio
Send a POST request to the transcription endpoint with your audio file. Include your API key in the Authorization header.
curl -X POST https://tmrone.cloud/api/v1/transcribe \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/octet-stream" \
--data-binary @audio.mp35. Read the Response
The API returns a JSON object with the transcribed text, confidence score, and audio duration:
{
"text": "transcribed text here",
"confidence": 0.95,
"duration_seconds": 14.2,
"model": "tmrone-speech-v1"
}That is it! You are now transcribing audio with Doslarb Cloud. See the API Reference for full endpoint documentation.