POST
seo
hashtag_generate
1 creditGenerate hashtag variants from keywords
Endpoint
POST /api/v1/tools/seo/hashtag_generate
Body Parameters
style
string
optional
default: "all"
keywords
array
required
Example
input
Request
{
"style": "all",
"keywords": [
"remote work",
"digital nomad"
]
}
output
Response
{
"hashtags": [
{
"keyword": "remote work",
"variants": {
"lower": "#remotework",
"upper": "#REMOTEWORK",
"pascal": "#RemoteWork"
}
},
{
"keyword": "digital nomad",
"variants": {
"lower": "#digitalnomad",
"upper": "#DIGITALNOMAD",
"pascal": "#DigitalNomad"
}
}
],
"flat_list": [
"#RemoteWork",
"#remotework",
"#REMOTEWORK",
"#DigitalNomad",
"#digitalnomad",
"#DIGITALNOMAD"
]
}
Response Format
HTTP/1.1 200 OK
SUCCESS
{
"success": true,
"data": {
"hashtags": [
{
"keyword": "remote work",
"variants": {
"lower": "#remotework",
"upper": "#REMOTEWORK",
"pascal": "#RemoteWork"
}
},
{
"keyword": "digital nomad",
"variants": {
"lower": "#digitalnomad",
"upper": "#DIGITALNOMAD",
"pascal": "#DigitalNomad"
}
}
],
"flat_list": [
"#RemoteWork",
"#remotework",
"#REMOTEWORK",
"#DigitalNomad",
"#digitalnomad",
"#DIGITALNOMAD"
]
},
"meta": {
"tool": "hashtag_generate",
"credits_consumed": 1
}
}
HTTP/1.1 422 Unprocessable Entity
ERROR
{
"success": false,
"data": null,
"error": {
"code": "validation_error",
"message": "The given data was invalid."
}
}
Sign in to try this tool directly from the docs.
Code Examples
Request Example
lightbulb
Developer Tip
Credits are deducted before execution. If the upstream tool fails, credits are automatically refunded to your account.