ALL SKILLS
SCHEDULED1 CREDIT / RUN

Crypto daily watch

Daily USD prices and 24h change for BTC, ETH and SOL, with AI flagging any big moves.

Use this skillFREE KEY INCLUDED · 100 RENDERS / MONTH

The workflow

This skill is a 3-step workflow. Everything below is the full definition — nothing hidden. Use it from the Dashboard (no code), the REST API, or an AI agent via MCP.

workflow.json
{
  "name": "Crypto daily watch",
  "trigger": {
    "type": "cron",
    "everyMinutes": 720
  },
  "steps": [
    {
      "action": "fetch",
      "url": "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true"
    },
    {
      "action": "ai",
      "prompt": "Report each coin's USD price and 24h change. Flag any move beyond 5% as notable. Plain text.",
      "input": "{{1.body}}"
    },
    {
      "action": "email",
      "to": "you@example.com",
      "subject": "Crypto daily watch",
      "body": "{{3.text}}"
    }
  ]
}

Three ways to run it

1No code — Dashboard

Hit “Use this skill” — the builder opens with every step prefilled. Edit the placeholder URLs, press run. Done.

2API — one request

curl
curl -X POST https://api.ottersnap.com/v1/workflows \
  -H "Authorization: Bearer otter_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"Crypto daily watch","trigger":{"type":"cron","everyMinutes":720},"steps":[{"action":"fetch","url":"https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true"},{"action":"ai","prompt":"Report each coin's USD price and 24h change. Flag any move beyond 5% as notable. Plain text.","input":"{{1.body}}"},{"action":"email","to":"you@example.com","subject":"Crypto daily watch","body":"{{3.text}}"}]}'

3AI agent — via MCP

Glint ships an official MCP server. Paste this prompt into Claude, Cursor or Codex and it creates the skill for you:

agent prompt
Using the ottersnap-mcp server (npm: ottersnap-mcp), create a Glint workflow with this exact definition:

{
  "name": "Crypto daily watch",
  "trigger": {
    "type": "cron",
    "everyMinutes": 720
  },
  "steps": [
    {
      "action": "fetch",
      "url": "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true"
    },
    {
      "action": "ai",
      "prompt": "Report each coin's USD price and 24h change. Flag any move beyond 5% as notable. Plain text.",
      "input": "{{1.body}}"
    },
    {
      "action": "email",
      "to": "you@example.com",
      "subject": "Crypto daily watch",
      "body": "{{3.text}}"
    }
  ]
}

Then confirm it was created and tell me how to run it once manually.

Step by step

01

fetchSTEP

https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum,solana&vs_currencies=usd&include_24hr_change=true

02

aiAI

Report each coin's USD price and 24h change. Flag any move beyond 5% as notable. Plain text.

accepts {{1.…}} from the previous step

03

emailSEND

you@example.com · Crypto daily watch

accepts {{2.…}} from the previous step

EVERY RUN = 1 CREDIT · FAILED STEPS STOP THE CHAIN · RESULTS FEED FORWARD WITH TEMPLATES