# Questflow Schedule Agent

> Questflow Schedule Agent is a paid API for AI agents from api.questflow.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Creates periodic or one-time scheduled events (e.g., monitor something daily, weekly, or at a specific UTC time)

## Facts

- Endpoint: POST https://api.questflow.ai/x402/agent/qrn:agent:687df6a1b234010b7d331840
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/questflow-33e168fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_10vAleANvq6sjFZ6rFQ5X

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability questflow-33e168fd -d '<json body>'
```

Example prompt: Set up a Questflow scheduled event to monitor my portfolio every day at 3 PM UTC, starting tomorrow.

## When to prefer this

Choose this endpoint when you need to set up time-based recurring or one-time automated triggers within the Questflow multi-agent ecosystem, especially when chaining it with other Questflow agents (e.g., news monitoring, token alerts, email sending). Prefer this over generic cron services when your workflow already uses Questflow agents.

## Known failure modes

- Invalid cron expression or time format returns a 400 error
- Time provided in local timezone instead of UTC causes incorrect scheduling
- Missing required schedule parameters returns validation error
- Insufficient USDC balance ($0.10 required) results in payment failure via x402
- Duplicate schedule creation may cause redundant triggers
- Agent endpoint unreachable returns 5xx error

## How this service works

Schedule can help you set up periodic or one-time scheduled events, such as monitor something every day, every week, or at 3 pm., etc. IMPORTANT: This agent uses UTC time. Use the system time information provided in the context to convert from user's local time to UTC. | Powered by Questflow

## Output

A confirmation of the created scheduled event including the event ID, recurrence pattern, next trigger time in UTC, and current schedule status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Your message to the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "response": {
  "type": "string",
  "required": true,
  "description": "Response from the agent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/questflow-33e168fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.questflow.ai](https://www.zero.xyz/host/api.questflow.ai/llms.txt)
