JustRecord AI API
Integrate JustRecord's transcription and AI summary capabilities directly into your own applications, CRM, or automated workflows.
Authentication
All API requests require an API key to be sent in the Authorization header using the Bearer scheme.
HTTP HEADER
Authorization: Bearer your_api_key_here
Transcription Jobs
Submit an audio URL for processing or check the status of a job.
REQUEST
POST /v1/jobs
// JSON Body
{
"audio_url": "https://example.com/meeting.mp3",
"language": "en-US",
"diarization": true
}
AI Insights Data
Retrieve the AI-generated summary and action items for a completed job.
REQUEST
GET /v1/jobs/{id}/insights
RESPONSE (200 OK)
{
"id": "job_82f1x9",
"summary": "Key decisions made regarding the product roadmap...",
"action_items": ["Schedule follow-up with marketing", "Update design docs"],
"sentiment": "positive"
}
Need help with integration?
Our developer support team is available to help you build powerful AI workflows.
Contact Dev Support