Get Your Free API Key

Start using Maru APIs in seconds. No credit card required.

Create Your API Key

We'll never share your email or send spam.

Quick Start Example

curl -X POST https://textutils.maru-api.workers.dev/api/case-convert \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY" \
  -d '{"text": "hello world", "to": "camelCase"}'

// Response
{"original": "hello world", "converted": "helloWorld", "type": "camelCase"}