Text
Reverse word order API
Reverses the order of words while preserving each word intact. Answers 'how do I reverse the word order of a sentence?', 'how do I flip a phrase end-to-start?'.
Price$0.01per request
MethodPOST
Route/v1/text/reverse-words
StatusLive
MIME typeapplication/json
Rate limit120/minute
Cache0s public
textreversewordsordertransformsentencefliprearrange
API URL
Integration docshttps://x402.hexl.dev/v1/text/reverse-wordsExample request
{
"text": "the quick brown fox"
}Example response
{
"reversed": "fox brown quick the",
"wordCount": 4
}Input schema
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"examples": [
"the quick brown fox"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}