Connect OpenClaw to DoNotify

Trigger voice call reminders with natural language through your OpenClaw assistant. Say "call me about the meeting" and your phone rings.

Prerequisites

DoNotify Account

Active subscription with a phone number configured in your profile.

OpenClaw Installed

OpenClaw gateway running locally or on your server.

Setup Guide

1

Generate an API Token

Go to your profile page and create a new API token in the "API Tokens" section. Copy the token—you'll only see it once.

2

Download the Skill

Download the skill files and place them in your OpenClaw skills directory:

mkdir -p ~/.openclaw/workspace/skills/donotify
curl -o ~/.openclaw/workspace/skills/donotify/SKILL.md \
  https://donotifys.com/openclaw-skill/donotify/SKILL.md
curl -o ~/.openclaw/workspace/skills/donotify/package.json \
  https://donotifys.com/openclaw-skill/donotify/package.json

Or download directly: SKILL.md, package.json

3

Configure Environment

Add your token and DoNotify URL to your OpenClaw configuration file (openclaw.json):

{
  "skills": {
    "donotify": {
      "enabled": true
    }
  },
  "env": {
    "DONOTIFY_API_TOKEN": "your-api-token-here",
    "DONOTIFY_URL": "https://donotifys.com"
  }
}
4

Restart & Test

Restart the OpenClaw gateway to load the skill, then try these commands:

"Check my DoNotify usage"
"Call me now about picking up groceries"
"Remind me at 3pm to join the team standup"

API Reference

GET /api/usage

Returns your current plan, notification limit, monthly usage, remaining count, and whether a phone number is configured.

POST /api/call-now

Places an immediate voice call to your phone with the given title and optional description.

Parameter Type Required Description
title string Yes What the call is about (max 255 chars)
description string No Additional details (max 1000 chars)
POST /api/reminders

Schedules a voice call for a future time.

Parameter Type Required Description
title string Yes Reminder title (max 255 chars)
call_at ISO 8601 Yes When to place the call (must be in the future)
description string No Extra details (max 1000 chars)
event_time ISO 8601 No Actual event time, if different from call time

Example Commands

Once the skill is installed, you can use natural language with your OpenClaw assistant:

Immediate Call

"Call me now about the dentist appointment"

Scheduled Reminder

"Remind me at 2:30pm to take my medication"

Check Usage

"How many DoNotify reminders do I have left?"

With Details

"Call me about groceries — need milk, eggs, and bread"

Ready to Get Started?

Create your API token and install the skill in minutes.

Get Started Free

3 free reminders included • No credit card required