Job Routes
Get Job Details By Id
API Documentation
SDK Documentation
Voice Enablement
Transcription Routes
Text to Speech Routes
Voice Agents Routes
Voice Agents Conversations Routes
AI Content Routes
Project Routes
API Statistics Routes
Job Routes
Get Job Details By Id
GET
/
v1
/
jobs
curl --request GET \
--url https://api.tryhamsa.com/v1/jobs \
--header 'Authorization: <api-key>'
{
"message": "<string>",
"previewUrl": "<string>",
"data": {
"id": "<string>",
"title": "<string>",
"model": "<string>",
"type": "<string>",
"processingType": "<string>",
"webhookUrl": "<string>",
"totalCost": 123,
"usageTime": "<string>",
"fromLng": "<string>",
"toLng": "<string>",
"mediaUrl": "<string>",
"jobResponse": {},
"fromScript": "<string>",
"toScript": "<string>",
"status": "PENDING",
"relevantJobId": "<string>",
"agentDetails": "<string>",
"apiKeyId": "<string>",
"billingId": "<string>",
"systemModelKey": "<string>",
"voiceAgentId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
Authorizations
Pass the API key in the Authorization header, You need to put Token keyword before the API key. e.g. 'Authorization: Token <api-key>'
Response
200
application/json
Successful retrieval of job details
Available options:
PENDING
, COMPLETED
, FAILED
curl --request GET \
--url https://api.tryhamsa.com/v1/jobs \
--header 'Authorization: <api-key>'
{
"message": "<string>",
"previewUrl": "<string>",
"data": {
"id": "<string>",
"title": "<string>",
"model": "<string>",
"type": "<string>",
"processingType": "<string>",
"webhookUrl": "<string>",
"totalCost": 123,
"usageTime": "<string>",
"fromLng": "<string>",
"toLng": "<string>",
"mediaUrl": "<string>",
"jobResponse": {},
"fromScript": "<string>",
"toScript": "<string>",
"status": "PENDING",
"relevantJobId": "<string>",
"agentDetails": "<string>",
"apiKeyId": "<string>",
"billingId": "<string>",
"systemModelKey": "<string>",
"voiceAgentId": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}