REST API

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.

Overview

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.

API Base URL
https://api.clipmind.tech

Secure Authentication

JWT-based authentication ensures secure access to the API with time-limited tokens.

Image Generation

Generate high-resolution PNG images with customizable themes and layouts.

AI-Powered

Leverage AI for intelligent summarization and brainstorming from raw text.

Endpoints

POST/public/mindmaps/image

Processes raw text or markdown to generate a structured mind map image (PNG). The process involves AI summarization followed by professional rendering.

FieldTypeRequiredDescription
textstringYesThe raw text or markdown to be converted.
options.themestringNoColor theme: dark, light, blue, etc.
options.layoutstringNoLayout type: mindmap, logic, org, tree.
options.modestringNoGeneration mode: summarize or brainstorm.
scalenumberNoResolution scale factor (default: 2).
Example RequestcURL
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
POST/public/mindmaps/markdown

Processes raw text to generate a structured markdown representation of a mind map. Useful for rendering with your own tools.

FieldTypeRequiredDescription
textstringYesThe raw text to be converted.
options.modestringNoGeneration mode: summarize or brainstorm.
options.languagestringNoOutput language (e.g., english, chinese).
Response FormatJSON
{
  "success": true,
  "data": "# Root Node\n## Child Node 1\n## Child Node 2\n..."
}

Getting Started

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