curl -X POST \
<BASE_URL>/hashtag \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"post": "Your post text",
"min": 2,
"max": 5,
"location": "Some location",
"guidelines": "Some guidelines"
}'
{
"hashtag": "#hashtag1 #hashtag2 #hashtag3"
}
Body
This endpoint will generate hashtags for your social media posts.
This is the post content for which you want to generate hashtags. Example: This is a sample post.
Optional: Minimum number of hashtags to generate in string. Example: 5
Optional: Maximum number of hashtags to generate in string. Example: 10
Optional: Location of the post. Example: New York
Optional: Guildlines for the post. Example: No political hashtags
Response
The list of the hashtags generated for the post.
curl -X POST \
<BASE_URL>/hashtag \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"post": "Your post text",
"min": 2,
"max": 5,
"location": "Some location",
"guidelines": "Some guidelines"
}'
{
"hashtag": "#hashtag1 #hashtag2 #hashtag3"
}