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.

post
string

This is the post content for which you want to generate hashtags. Example: This is a sample post.

min
string

Optional: Minimum number of hashtags to generate in string. Example: 5

max
string

Optional: Maximum number of hashtags to generate in string. Example: 10

location
string

Optional: Location of the post. Example: New York

guildlines
string

Optional: Guildlines for the post. Example: No political hashtags

Response

hashtag
string

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"
}