DevTools.at
API Documentation
POST/api/v1/text-case

Text Case

Convert text between different cases

text

Parameters

inputstring
Yes

Text to convert

casestring
No

uppercase, lowercase, titlecase, camelcase, snakecase, kebabcase

Default: lowercase

Example Request

curl -X POST https://devtools.at/api/v1/text-case \
  -H "Content-Type: application/json" \
  -d '{"input":"hello world example","case":"camelcase"}'

Example Response

{
  "success": true,
  "data": {
    "result": "helloWorldExample"
  },
  "meta": {
    "processingTime": 1
  }
}

Try it out

Test this endpoint directly in your browser

Response
Click "Execute Request" to see the response