Skip to main content
ShrinkJSON
Key Transform
Home
Tools
Converters
Blog
Toggle theme
Open Navigation
Key Transform
Convert JSON keys between camelCase, snake_case, and kebab-case
JSON Input
camelCase
snake_case
kebab-case
Generate Sample
{ "roadmap": { "quarter": "2025-Q2", "milestones": [ { "id": "m-1", "name": "Edge cache warmup", "owner": "Elena", "status": "blocked", "eta": "2026-04-13" }, { "id": "m-2", "name": "Realtime alerts", "owner": "Ravi", "status": "at-risk", "eta": "2026-04-26" }, { "id": "m-3", "name": "Partner API beta", "owner": "Liang", "status": "at-risk", "eta": "2026-04-23" } ] }, "squads": [ { "name": "Quill", "members": [ "Elena", "John" ], "velocity": 18 }, { "name": "Delta", "members": [ "Liang", "Elena", "Mateo" ], "velocity": 25 }, { "name": "Harbor", "members": [ "John", "Elena" ], "velocity": 37 } ], "experiments": [ { "id": "exp-1", "hypothesis": "Guided onboarding lowers drop-off", "metric": "supportTickets", "result": "positive" } ] }
Transformed Output
Copy
{ "roadmap": { "quarter": "2025-Q2", "milestones": [ { "id": "m-1", "name": "Edge cache warmup", "owner": "Elena", "status": "blocked", "eta": "2026-04-13" }, { "id": "m-2", "name": "Realtime alerts", "owner": "Ravi", "status": "at-risk", "eta": "2026-04-26" }, { "id": "m-3", "name": "Partner API beta", "owner": "Liang", "status": "at-risk", "eta": "2026-04-23" } ] }, "squads": [ { "name": "Quill", "members": [ "Elena", "John" ], "velocity": 18 }, { "name": "Delta", "members": [ "Liang", "Elena", "Mateo" ], "velocity": 25 }, { "name": "Harbor", "members": [ "John", "Elena" ], "velocity": 37 } ], "experiments": [ { "id": "exp-1", "hypothesis": "Guided onboarding lowers drop-off", "metric": "supportTickets", "result": "positive" } ] }