Rewrite
Premium · 5 creditsRewrite text to match a target style while preserving the original meaning.
POST /api/rewrite
Section titled “POST /api/rewrite”Parameters
Section titled “Parameters”| Field | Type | Required | Description |
|---|---|---|---|
text | string | Yes | Text to rewrite |
target | string | Yes | formal, casual, concise, expanded, simplified, technical, friendly, persuasive |
Response
Section titled “Response”| Field | Type | Description |
|---|---|---|
rewritten | string | Rewritten text |
target_applied | string | Target style applied |
original_tone | string | Detected tone of the original |
Examples
Section titled “Examples”Formal
Section titled “Formal”curl -X POST https://morso.dev/api/rewrite \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "Hey, just wanted to check if you got the thing I sent over yesterday?", "target": "formal"}'{ "rewritten": "I am writing to confirm whether you have received the document I forwarded yesterday.", "target_applied": "formal", "original_tone": "casual"}Concise
Section titled “Concise”curl -X POST https://morso.dev/api/rewrite \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "In the event that you find yourself in a situation where you need to make a determination about the best course of action to take going forward, please do not hesitate to reach out.", "target": "concise"}'{ "rewritten": "If you need help deciding next steps, reach out.", "target_applied": "concise", "original_tone": "formal"}Simplified
Section titled “Simplified”curl -X POST https://morso.dev/api/rewrite \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"text": "The implementation leverages a microservices architecture with event-driven communication patterns.", "target": "simplified"}'{ "rewritten": "The system is built from small, independent services that communicate by sending events to each other.", "target_applied": "simplified", "original_tone": "technical"}