API KeysSơ đồ tư duy

Sơ đồ tư duy

Tạo sơ đồ tư duy từ một ghi chú đã có. Tất cả các endpoint bên dưới đều hỗ trợ API Key (X-API-Key hoặc Authorization: Bearer ntx_...).

Base URL: https://api.notexapp.com

Tạo Mindmap — POST /v2/create/mindmap

Tạo sơ đồ tư duy từ một ghi chú. Trả về task_id — theo dõi Tasks để lấy kết quả.

Cũng hỗ trợ: User JWT, Service Key.

Content-Type: application/x-www-form-urlencoded

FieldTypeRequiredDescription
note_idstringrequiredID của ghi chú dùng để tạo sơ đồ tư duy
communitybooleanoptionalTạo từ ghi chú cộng đồng
curl -X POST https://api.notexapp.com/v2/create/mindmap \
  -H "X-API-Key: ntx_live_..." \
  -H "Content-Type: application/x-www-form-urlencoded" \
  --data-urlencode "note_id=665f..."

Response (200) — trả về task_id:

{
  "status": "PROCESSING",
  "data": {
    "task_id": "b3f1a2c4-...",
    "user_id": "665f..."
  }
}

Theo dõi kết quả tác vụ để lấy sơ đồ tư duy đã tạo:

{
  "status": "SUCCESS",
  "data": {
    "note_id": "665f...",
    "mindmap": {
      "title": "Machine Learning",
      "children": [
        {
          "title": "Supervised Learning",
          "children": [...]
        },
        ...
      ]
    }
  }
}