About this endpoint
What it does
Submits content to generate SEO tags asynchronously. The request body includes the source content to analyze, with optional language and voice_tone settings, and the response returns a job identifier plus a status URL to poll for completion.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide the content to generate SEO tags. |
| language | String | No | Specify the language of the output. Default: English. |
| voice_tone | String | No | Specify the voice tone of the output. It can be adjectives like funny or joyous, or even the name of a famous writer. |
Response
Returns a JSON object with job_id and status_url string fields. Use job_id as the unique identifier for the submitted job, and status_url to poll for job status. This is a 200 success response.
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | The unique identifier for the submitted job. |
| status_url | String | Yes | The URL to poll for job status. |
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 job_id to track the job, and status_url to poll for completion.