Generate high-quality mind map images directly from text using our powerful REST API. Perfect for integration into your own applications, automation pipelines, and workflows.
The ClipMind REST API allows you to programmatically generate professional mind map images from any text content. Whether you want to create summaries, visualize ideas, or integrate mind mapping into your application, our API provides a simple and powerful interface to do so.
https://api.clipmind.techJWT-based authentication ensures secure access to the API with time-limited tokens.
Generate high-resolution PNG images with customizable themes and layouts.
Leverage AI for intelligent summarization and brainstorming from raw text.
/public/mindmaps/imageProcesses raw text or markdown to generate a structured mind map image (PNG). The process involves AI summarization followed by professional rendering.
| Field | Type | Required | Description |
|---|---|---|---|
text | string | Yes | The raw text or markdown to be converted. |
options.theme | string | No | Color theme: dark, light, blue, etc. |
options.layout | string | No | Layout type: mindmap, logic, org, tree. |
options.mode | string | No | Generation mode: summarize or brainstorm. |
scale | number | No | Resolution scale factor (default: 2). |
curl -X POST https://api.clipmind.tech/public/mindmaps/image \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{
"text": "My MindMap\n- Idea 1\n- Idea 2",
"options": {
"theme": "dark",
"layout": "mindmap",
"mode": "summarize"
}
}' > mindmap.png/public/mindmaps/markdownProcesses raw text to generate a structured markdown representation of a mind map. Useful for rendering with your own tools.
| Field | Type | Required | Description |
|---|---|---|---|
text | string | Yes | The raw text to be converted. |
options.mode | string | No | Generation mode: summarize or brainstorm. |
options.language | string | No | Output language (e.g., english, chinese). |
{
"success": true,
"data": "# Root Node\n## Child Node 1\n## Child Node 2\n..."
}To start using the ClipMind API, you need to generate an API token from your workspace. The token is valid for a limited time and must be included in the Authorization header of all API requests.
Generate Your API Token