Create social media posts for various platforms.
CURL
curl -H 'content-type: application/json'
-H 'Accept: application/json'
-H 'api-key: your-key'
-X POST https://www.learnitive.com/api/v1/social-media-posts
--data '{"input": "BMW car sell",
"mode":"twitter",
"model":"balanced",
"max_tokens":"256",
"temperature":".65"
}'
Example output.
{
"success": true,
"status": "success",
"message": [{
"index": 0,
"text": "At BMW, we are committed to giving drivers the highest quality cars that are reliable and stylish...",
"id":"b2f5ff95-46b2-4c92-8674-74aaa0c73839"
}]
}
Parameter
- input: string. The topic of the blog post.
- max_tokens: integer. The maximum number of tokens to generate. Default: 256
- mode: The platform, e.g. ‘twitter’ to generate a Tweet. Allowed: “twitter”, “linkedin”. Default: “twitter”.
- model: The language model to use, “fast”, “balanced”, “strong” and “expart”. Defaul: “fast”.
- temperature: number. The sampling temperature to be used in text generation. The higher the temperature, the higher the risk of the output to sound “made up”. Default: 0.65