Step 1. Submit the AI Job request
Endpoint: POST - /v1/seo/generate_tags
Attribute |
Type |
Mandatory |
Description |
content |
String |
Yes |
Provide the content to generate SEO tags. |
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 . |
language |
String |
No |
Specify the language of the output, defaults to English . |
REQUEST EXAMPLE:
{
"content": "Red Bull's Max Verstappen says this weekend's Las Vegas Grand Prix is \"99% show and 1% sporting event\". \n\n The triple world champion said he is \"not looking forward\" to the razzmatazz around the race, the first time Formula 1 cars have raced down the city's famous Strip. \n\n Other leading drivers were more equivocal about the hype.\n\n Aston Martin's Fernando Alonso said: \"With the investment that has been made and the place we are racing, it deserves a little bit [of] different treatment and extra show.\" \n\n The weekend was kick-started on Wednesday evening with a lavish opening ceremony.\n\n It featured performances from several music stars, including Kylie Minogue and Journey, and culminated in the drivers being introduced to a sparsely populated crowd in light rain by being lifted into view on hydraulic platforms under a sound-and-light show. \n\n Lewis Hamilton said: \"It's amazing to be here. It is exciting - such an incredible place, so many lights, a great energy, a great buzz. \n\n \"This is one of the most iconic cities there is. It is a big show, for sure. It is never going to be like Silverstone [in terms of history and purity]. But maybe over time the people in the community here will grow to love the sport.\" \n\n Hamilton added: \"It is a business, ultimately. You'll still see good racing here. \n\n \"Maybe the track will be good, maybe it will be bad. It was so-so on the [simulator]. Don't knock it 'til you try it. I hear there are a lot of people complaining about the direction [F1 president] Stefano [Domenicali] and [owners] Liberty have been going [but] I think they have been doing an amazing job.\"",
"voice_tone": "joyous",
"language": "English"
}
RESPONSE EXAMPLE:
{
"status_url": "https://sharpapi.com/api/v1/content/translate/job/status/5de4887a-0dfd-49b6-8edb-9280e468c210",
"job_id": "5de4887a-0dfd-49b6-8edb-9280e468c210"
}
Step 2. Monitor & Fetch AI Job Results
Endpoint: GET - /v1/hr/job_description/job/status/:uuid
An endpoint is used to check on the progress of the requested API job.
RESULT EXAMPLE:
{
"data": {
"type": "api_job_result",
"id": "397676a9-599b-4f6d-822a-d9d9f32b3890",
"attributes": {
"status": "success",
"type": "seo_generate_tags",
"result": {
"meta_tags": {
"title": "Las Vegas Grand Prix: A Showstopper Event",
"author": "",
"og:url": "",
"og:type": "article",
"keywords": "Las Vegas Grand Prix, Max Verstappen, Formula 1, F1, Lewis Hamilton, Fernando Alonso",
"og:image": "",
"og:title": "Las Vegas Grand Prix: A Showstopper Event",
"description": "Max Verstappen and other F1 stars share their thoughts on the Las Vegas Grand Prix.",
"og:site_name": "",
"twitter:card": "summary",
"twitter:image": "",
"twitter:title": "Las Vegas Grand Prix: A Showstopper Event",
"og:description": "Max Verstappen and other F1 stars share their thoughts on the Las Vegas Grand Prix.",
"twitter:creator": "",
"twitter:description": "Max Verstappen and other F1 stars share their thoughts on the Las Vegas Grand Prix."
}
}
}
}
}