Single endpoint, instant results
CamelCase API - Convert Text to camelCase
Instantly convert snake_case, kebab-case, or space-separated text to camelCase. Perfect for variable naming, JSON keys, and JavaScript properties. Free: 1,000 requests/day, no API key required.
POST https://textforge.co/v1/run
{
"input": "hello world",
"pipeline": [
"camelcase"
]
}Response:
{
"success": true,
"input": "hello world",
"pipeline": [
"camelcase"
],
"result": "helloWorld",
"steps": [
{
"step": 1,
"action": "camelcase",
"result": "helloWorld",
"execution_time_ms": 1
}
],
"execution_time_ms": 4
}Quick Start
cURL
curl -X POST https://textforge.co/v1/run -H "Content-Type: application/json" -d '{"input":"hello world","pipeline":["camelcase"]}'Node.js
fetch("https://textforge.co/v1/run", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ input: "hello world", pipeline: ["camelcase"] })
}).then(r => r.json()).then(console.log);Python
import requests
payload = { "input": "hello world", "pipeline": ["camelcase"] }
response = requests.post("https://textforge.co/v1/run", json=payload)
print(response.json())PHP
<?php
$payload = json_encode([ "input" => "hello world", "pipeline" => ["camelcase"] ]);
$ch = curl_init("https://textforge.co/v1/run");
curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["Content-Type: application/json"]);
$response = curl_exec($ch);
echo $response;
?>Why use the API?
⚡
Sub-5ms latency
p95 response time, no cold starts
🔗
Composable pipelines
Chain transforms in one request
🛡️
Fair free tier
1,000 requests/day, no credit card
🌐
Works everywhere
curl, Python, JS, PHP - no SDK needed
📊
Built-in analytics
Usage tracking, rate limit headers
🔒
HTTPS only
CORS enabled, production ready