Catalog/text-reverse-words

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 URLhttps://x402.hexl.dev/v1/text/reverse-words
Integration docs
Example 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
}