POST
/
v1
/
jobs
/
ai-content
/
custom
curl --request POST \
  --url https://api.tryhamsa.com/v1/jobs/ai-content/custom \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "aiParts": [
    "introduction"
  ],
  "prompts": {
    "introduction": "<string>",
    "titles": "<string>",
    "summary": "<string>",
    "keywords": "<string>",
    "keyTopicsWithBullets": "<string>",
    "faq": "<string>",
    "webArticleSEOFriendly": "<string>",
    "threadsByInstagram": "<string>",
    "youtubeDescription": "<string>",
    "facebookPost": "<string>",
    "twitterThread": "<string>",
    "linkedInPost": "<string>"
  },
  "webhookUrl": "<string>",
  "webhookAuth": {
    "authKey": "Token",
    "authSecret": "Secret"
  }
}'
{
  "success": false,
  "message": "success",
  "data": {
    "id": "<string>",
    "title": "<string>",
    "model": "<string>",
    "type": "AI_CONTENT",
    "processingType": "<string>",
    "webhookUrl": "<string>",
    "totalCost": 123,
    "usageTime": "<string>",
    "mediaUrl": "<string>",
    "jobResponse": null,
    "status": "PENDING",
    "relevantJobId": "<string>",
    "apiKeyId": "<string>",
    "billingId": "<string>",
    "userId": "<string>",
    "systemModelKey": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

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

jobId
string
required

Body

application/json
Parameters for generating AI content.
aiParts
enum<string>[]
required
Available options:
introduction,
titles,
summary,
webArticleSEOFriendly,
keyTopicsWithBullets,
keyTopicsWithBullets,
keywords,
threadsByInstagram,
faq,
facebookPost,
youtubeDescription,
twitterThread,
linkedInPost
prompts
object

Prompts are optional, you need to add a prompt for every AI part you select, and it must end with 'Diarization: {diarization}, Language: {language}'

webhookUrl
string | null
webhookAuth
object

Authorization header to be sent in this format: Authorization: [authKey] [authSecret]

Response

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