Install
openclaw skills install roamInteract with Roam HQ via REST API. Search meetings, get transcripts, prompt transcripts with AI, send messages, and manage groups. Use when the user asks ab...
openclaw skills install roamAPI docs: https://developer.ro.am — fetch endpoint details from there as needed.
ROAM_API_KEY env var (Personal Access Token from Roam Settings → Developer).
All requests: Authorization: Bearer $ROAM_API_KEY
Base URL: https://api.ro.am
GET /v0/transcript.list — list meetings (supports after, before, limit)GET /v0/transcript.info?id=<id> — transcript details + summaryPOST /v0/transcript.prompt { "id": "...", "prompt": "..." } — AI analysis of a transcriptPOST /v0/chat.post { "groupId": "...", "text": "..." } — send a messageGET /v0/chat.history?groupId=<id> — message historyGET /v1/groups.list — list groups10 burst, 1 req/sec sustained. Respect Retry-After on 429s.
transcript.list → transcript.prompt for eachtranscript.list → filter by participants → transcript.promptchat.post to a group