Semantir API
Search
⌃K

For Social Media

Generate Social Media Post (Beta)

Example of Social Media Post generation, with title, subtitle, call to action, explanation, post text, as well as relevant images.
Python
curl
import requests
url = "https://api.semantir.com/v1/client-generate"
token = 'YOUR_TOKEN'
payload = {
"inputs": {
"product_name": "Angelfish",
"promotion": "Black Friday buy one pair get another pair on us",
"image_query": "Shoes",
"language": "en"
},
"tool_category": "smm_tool"
}
headers = {'Authorization': f'Bearer {token}'}
response = requests.post(url, headers=headers, json=payload)
print(response.json())
Response 200
{
"request_id": "8p5cvqcFphesB6juTpLDZz",
"output": {
"posts": { -- Main text for Social Media Post
"data": [
{
"uuid": "tByEGiNXsoczsKYxm1Gg3z",
"output": "Get yourself some killer heels in our brand new collection this season. The most elegant ankle booties have taken over and we can't wait to give them all a go. Whether they're paired up or used solo as stylish flats, these will be your ultimate go-to shoe to wear from day into night.\nSee the range below - which includes the latest styles like the 'Feline', plus check out our size guide to find yours.\nhttps://angelfishheels.co.uk",
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
},
"titles": { -- Title to use inside your image
"data": [
{
"uuid": "wX6w6Fd5AsXBfbJM3PxTyE",
"output": "Buy One Pair Get Another Free With Us In The New Year! (Black Friday)",
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
},
"subtitles": { -- subtitle to use inside your image
"data": [
{
"uuid": "s3sV57hi1JSoTcsMoUBM5m",
"output": "Use coupon code - BF141219-NOBF18 at checkout",
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
},
"call_to_actions": { -- call to action to use inside your image, or as a button
"data": [
{
"uuid": "skguKXGDRjZ2DF8CyjiMqq",
"output": "Apply here now",
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
},
"explanations": { -- optional text to use under button
"data": [
{
"uuid": "un2LcHZBHWzGyUz5e4fas2",
"output": "Order in bulk this year, save money while ordering more than one of these items during our sale event. For example order two pairs (of underwear), receive free socks as well....",
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
},
"images": { --relevant images
"data": [
{
"alt_description": "unpaired maroon plimsoll on top of yellow textile",
"url_raw": "https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?ixid=MnwyNDAxMzd8MHwxfHNlYXJjaHwxfHxTaG9lc3xlbnwxfDF8fHwxNjM3MTY2MzY5&ixlib=rb-1.2.1",
"url_full": "https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?crop=entropy&cs=srgb&fm=jpg&ixid=MnwyNDAxMzd8MHwxfHNlYXJjaHwxfHxTaG9lc3xlbnwxfDF8fHwxNjM3MTY2MzY5&ixlib=rb-1.2.1&q=85",
"url_regular": "https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyNDAxMzd8MHwxfHNlYXJjaHwxfHxTaG9lc3xlbnwxfDF8fHwxNjM3MTY2MzY5&ixlib=rb-1.2.1&q=80&w=1080",
"url_small": "https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyNDAxMzd8MHwxfHNlYXJjaHwxfHxTaG9lc3xlbnwxfDF8fHwxNjM3MTY2MzY5&ixlib=rb-1.2.1&q=80&w=400",
"url_thumb": "https://images.unsplash.com/photo-1525966222134-fcfa99b8ae77?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwyNDAxMzd8MHwxfHNlYXJjaHwxfHxTaG9lc3xlbnwxfDF8fHwxNjM3MTY2MzY5&ixlib=rb-1.2.1&q=80&w=200",
"author_name": "Paul Gaudriault",
"author_username": "pl_gt"
}
],
"request_id": "8p5cvqcFphesB6juTpLDZz"
}
},
"used_number_of_tokens": 9997693393,
"total_number_of_tokens": 10000000000
}
curl -X POST "https://api.semantir.com/v1/client-generate"
-H "Authorization: Bearer YOUR_TOKEN"
-H "Content-Type: application/json"
-d "{
\"inputs\":{\"product_name\":\"Angelfish\",
\"promotion\":\"Black Friday buy one pair get another pair on us\",
\"image_query\":\"Shoes\",
\"language\":\"en\"},
\"tool_category\":\"smm_tool\"
}"