POST
/
v1
/
jobs
/
all
curl --request POST \
  --url https://api.tryhamsa.com/v1/jobs/all \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "sort": {
    "field": "createdAt",
    "direction": "asc"
  },
  "take": 2,
  "skip": 2,
  "search": "<string>",
  "status": "PENDING",
  "type": "TRANSCRIPTION"
}'
{
  "success": false,
  "message": "success",
  "data": {
    "jobs": [
      {
        "id": "<string>",
        "title": "<string>",
        "type": "AI_CONTENT",
        "url": "<string>",
        "status": "PENDING",
        "cost": 123,
        "systemModelKey": "<string>",
        "relevantJobId": "<string>",
        "attributes": {
          "apiKey": "<string>",
          "mediaUrl": "<string>",
          "model": "<string>",
          "agentName": "<string>",
          "duration": 123,
          "voice": "<string>",
          "aiContentParts": [
            "<any>"
          ],
          "sourceJob": "<string>"
        },
        "apiKey": "<string>",
        "createdBy": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123,
    "filtered": 123
  }
}

Authorizations

Authorization
string
header
required

Pass the API key in the Authorization header, You need to put Token keyword before the API key. e.g. 'Authorization: Token <api-key>'

Query Parameters

projectId
string
required

Body

application/json
sort
object
take
integer
Required range: x >= 1
skip
integer
Required range: x >= 1
status
enum<string>
Available options:
PENDING,
COMPLETED,
FAILED
type
enum<string>
Available options:
TRANSCRIPTION,
TRANSLATION,
TTS,
AI_CONTENT

Response

200
application/json
Successful response
success
boolean
default:false
message
string
default:success
data
object