Theta One AI Developer Documentation
Welcome to Theta One AI Developer Documentation. 🎉
Experience Theta One AI's technology through our easy and simple API!
🚀 STT Quick Start
Already signed up for Theta One API Console and prepared your API key with credits charged?
Use the code below to immediately integrate Theta One Speech-to-Text API into your service!
- cURL
- Python
curl -X 'POST' \
'https://stt.thetaone-ai.com/transcribe' \
-H 'accept: application/json' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: multipart/form-data' \
-F 'file=@audio.wav;type=audio/wav'
import requests
url = "https://stt.thetaone-ai.com/transcribe"
headers = {
"x-api-key": "YOUR_API_KEY"
}
with open("audio.wav", "rb") as audio_file:
files = {"file": ("audio.wav", audio_file, "audio/wav")}
response = requests.post(url, headers=headers, files=files)
result = response.json()
print(f"Transcription: {result['text']}")
✔️ Step by Step Guide
📜 Support & Contact
Support Contact: support@thetaone.co
🔗 Links
- Theta One API Console - Manage API keys and check usage
- Company Website - Learn about Theta One AI
- FAQ - Frequently Asked Questions
Get started now!