← 返回
开发者工具 Key 中文

Voicenotes

Sync and access voice notes from Voicenotes.com. Use when the user wants to retrieve their voice recordings, transcripts, and AI summaries from Voicenotes. Supports fetching notes, syncing to markdown, and searching transcripts.
同步并访问 Voicenotes.com 的语音笔记。在用户想要获取语音录音、转录文本和 AI 摘要时使用。支持获取笔记、同步为 Markdown 以及搜索转录文本。
shawnhansen
开发者工具 clawhub v1.0.0 1 版本 99566.2 Key: 需要
★ 1
Stars
📥 2,505
下载
💾 48
安装
1
版本
#latest

概述

Voicenotes Integration

Sync voice notes from voicenotes.com into the workspace.

Setup

  1. Get access token from: https://voicenotes.com/app?obsidian=true#settings
  2. Set environment variable: export VOICENOTES_TOKEN="your-token-here"

Quick Start

# Verify connection
./scripts/get-user.sh | jq .

# Fetch recent notes (JSON)
./scripts/fetch-notes.sh | jq '.data[:3]'

# Sync all notes to markdown files
./scripts/sync-to-markdown.sh --output-dir ./voicenotes

Scripts

fetch-notes.sh

Fetch voice notes as JSON.

./scripts/fetch-notes.sh                    # All notes
./scripts/fetch-notes.sh --limit 10         # Last 10 notes
./scripts/fetch-notes.sh --since 2024-01-01 # Notes since date

get-user.sh

Verify token and get user info.

./scripts/get-user.sh | jq '{name, email}'

sync-to-markdown.sh

Sync notes to markdown files with frontmatter.

./scripts/sync-to-markdown.sh --output-dir ./voicenotes

Output format:

---
voicenotes_id: abc123
created: 2024-01-15T10:30:00Z
tags: [idea, project]
---

# Note Title

## Transcript
The transcribed content...

## Summary
AI-generated summary...

API Reference

Base URL: https://api.voicenotes.com/api/integrations/obsidian-sync

Headers required:

  • Authorization: Bearer {token}
  • X-API-KEY: {token}

Endpoints:

  • GET /user/info - User details
  • GET /recordings - List voice notes (paginated)
  • GET /recordings/{id}/signed-url - Audio download URL

Data Structure

Each voice note contains:

  • recording_id - Unique identifier
  • title - Note title
  • transcript - Full transcript text
  • creations[] - AI summaries, action items, etc.
  • tags[] - User tags
  • created_at / updated_at - Timestamps
  • duration - Recording length in seconds

Tips

  • Notes are paginated; check links.next for more pages
  • Use --since to fetch only new notes since last sync
  • AI creations include summaries, todos, and custom prompts
  • Rate limited to ~60 requests/minute

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-28 14:09 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 66 📥 179,897
developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 426 📥 118,055
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,863