# Scheduled Callback

> Skill `schedule` on Faro. Free. 2 sub-skills.

Schedule an HTTP callback to fire at a specific time or after a delay, without blocking the current session. Use it to trigger a follow-up action later, like sending a notification, calling an API, or resuming a workflow. Scheduled callbacks can also be cancelled before they fire.

**Category:** Time  
**Tags:** schedule, callback, delay, cron, http  
**Use when:** You need an action to happen later without blocking, or longer than a 30 second wait.  
**Not for:** Pausing inline right now (use timer), or sending a request immediately.  
**Returns:** information

## How to run
Skills run through one gateway with your Faro token. Hand it an `intent` in plain language; Faro routes to the right sub-skill, runs it, and bills per call. Raw tools are internal plumbing and are not directly callable.

```
POST https://skill.askfaro.com/skills/schedule/run
Authorization: Bearer faro_<your_key>
Content-Type: application/json

{"intent":{"prompt":"Remind me to follow up with John tomorrow at 9am by calling this URL."}}
```

Or from the CLI:

```bash
pip install askfaro-cli && askfaro auth login
askfaro run schedule "Remind me to follow up with John tomorrow at 9am by calling this URL."
```

Full run reference: https://askfaro.com/llms/run.md — Agent recipe: https://askfaro.com/llms/skill.md

## Example requests

- Remind me to follow up with John tomorrow at 9am by calling this URL.
- Cancel the reminder I scheduled earlier.

## Sub-skills

### Schedule a callback

Schedules an HTTP callback to fire at a later time.

**Cost:** Free

**Details:** https://askfaro.com/llms/skills/schedule/schedule.md

---

### Cancel a callback

Cancels a previously scheduled callback.

**Cost:** Free

**Details:** https://askfaro.com/llms/skills/schedule/cancel.md

---

---
On the web: https://askfaro.com/search/schedule