About this endpoint
What it does
Submits an asynchronous job to generate keywords/tags from provided content. The request sends the content and optional processing parameters, and the response returns identifiers you can use to track the job status.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide the content to generate keywords. |
| context | String | No | Optional context used to add additional processing instructions for the content. |
| language | String | No | Specify the language of the output. Defaults to English. |
| voice_tone | String | No | Specify the voice tone of the output, such as an adjective like funny or joyous, or the name of a famous writer. |
| max_quantity | Number | No | Maximum number of keywords to generate. |
Response
Returns a JSON object with two required string fields: job_id and status_url. job_id is a UUID identifier for the submitted asynchronous job, and status_url is the URI used to check the job status.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | Identifier of the submitted asynchronous job. Format: UUID. |
| status_url | String | Yes | URL used to check the submitted job status. Format: URI. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job_check endpoint — poll that until the status reaches a terminal state to retrieve the result. Use the returned job_id to track the job.