402.bot
Recipe
live $0.0075 medium Market & Prediction

Token Unlock Action Checklist

Turn asset details, unlocks, and timeseries context into a compact token unlock checklist.

$0.0075price
4steps
6sources
6ktokens saved
3tool calls compressed
median latency
MessariGeminiMessari Token UnlocksMessari Asset DetailsMessari Asset TimeseriesGoogle Gemini Flash Structured

Endpoint: /v1/recipes/token-unlock-action-checklist/run
Capabilities: token-unlocks, messari, market-checklist

Why pay for this?

This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.

Combines bounded Messari unlock, asset, and timeseries context into a compact token-unlock checklist.

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Messari on 402.bot

Use 402.bot as the bounded execution and briefing layer for Messari asset fundamentals, news, unlocks, stablecoins, fundraising, X-user signals, and AI synthesis.

Canonical guide: https://402.bot/recipes/messari-asset-intel-brief

Public sources: messari_asset_details, messari_asset_timeseries, messari_news_feed, messari_token_unlocks, messari_stablecoins, messari_funding_rounds, messari_x_users, messari_x_user_details, messari_x_users_timeseries

Messari read sources run through the deployment's Base upstream x402 buyer wallet.Messari AI chat stays internal to recipes and is not exposed as a raw public passthrough in v1.402.bot does not add a separate Messari API-key lane in this iteration.

Notes: Use the provider page for identity and capability context, and the recipe page for runnable workflows. Public sources stay bounded to normalized read shapes instead of becoming a generic Messari proxy. The simple Messari recipes are designed to save tokens by flattening paid Messari data into machine-friendly snapshots before you reach for longer AI synthesis flows.

Pipeline

Stage 1

Load token unlocks

fetch_transform

Source: Messari Token Unlocks
Step id: unlocks

Stage 2

Load Messari asset

fetch_transform

Source: Messari Asset Details
Step id: asset

Stage 3

Load asset timeseries

fetch_transform

Source: Messari Asset Timeseries
Step id: timeseries

Stage 4

Build token unlock action checklist

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load token unlocks

{
  "id": "unlocks",
  "kind": "fetch_transform",
  "title": "Load token unlocks",
  "request": {
    "params": {
      "limit": 5,
      "assetId": "{{ $.input.assetSlug }}"
    },
    "sourceId": "messari_token_unlocks",
    "deliveryFormat": "json"
  }
}

Load Messari asset

{
  "id": "asset",
  "kind": "fetch_transform",
  "title": "Load Messari asset",
  "request": {
    "params": {
      "assetId": "{{ $.input.assetSlug }}"
    },
    "sourceId": "messari_asset_details",
    "deliveryFormat": "json"
  }
}

Load asset timeseries

{
  "id": "timeseries",
  "kind": "fetch_transform",
  "title": "Load asset timeseries",
  "request": {
    "params": {
      "limit": 14,
      "assetId": "{{ $.input.assetSlug }}",
      "frequency": "1d",
      "metricKey": "price_usd"
    },
    "sourceId": "messari_asset_timeseries",
    "deliveryFormat": "json"
  }
}

Build token unlock action checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build token unlock action checklist",
  "request": {
    "params": {
      "input": {
        "asset": "{{ $.stepsById.asset.output }}",
        "symbol": "{{ $.input.symbol }}",
        "unlocks": "{{ $.stepsById.unlocks.output }}",
        "assetSlug": "{{ $.input.assetSlug }}",
        "timeseries": "{{ $.stepsById.timeseries.output }}"
      },
      "prompt": "Build a token unlock action checklist. Focus on the checklist items, the unlock signals that matter, and the next actions before the event.",
      "responseSchema": {
        "type": "object",
        "required": [
          "assetSlug",
          "summary",
          "checklist",
          "unlockSignals",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "assetSlug": {
            "type": "string"
          },
          "checklist": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "status",
                "reason"
              ],
              "properties": {
                "title": {
                  "type": "string"
                },
                "reason": {
                  "type": "string"
                },
                "status": {
                  "enum": [
                    "do_now",
                    "watch",
                    "skip"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Token unlock checklist items."
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "unlockSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Unlock-related signals worth noting."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing bounded unlock context into a short operator checklist. Stay grounded in the supplied Messari asset, unlock, and timeseries context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}