402.bot
Recipe
live $0.0075 medium General Research

Messari Funding Rounds Digest

Return a flat Messari fundraising digest for downstream monitoring and triage.

$0.0075price
2steps
3sources
68ktokens saved
5tool calls compressed
median latency
MessariMessari Funding RoundsTransform

Endpoint: /v1/recipes/messari-funding-rounds-digest/run
Capabilities: messari, fundraising, funding-rounds, automation

Why pay for this?

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

Funding rounds -> flat digest

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

Fetch Messari funding rounds

fetch_transform

Source: Messari Funding Rounds
Step id: rounds

Stage 2

Flatten funding digest

transform

Source: Transform
Step id: digest

Recent runs

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

Fetch Messari funding rounds

{
  "id": "rounds",
  "kind": "fetch_transform",
  "title": "Fetch Messari funding rounds",
  "request": {
    "params": {
      "page": "{{ $.input.page }}",
      "limit": "{{ $.input.limit }}",
      "roundType": "{{ $.input.roundType }}"
    },
    "sourceId": "messari_funding_rounds",
    "deliveryFormat": "json"
  }
}

Flatten funding digest

{
  "id": "digest",
  "kind": "transform",
  "title": "Flatten funding digest",
  "request": {
    "mode": "clean_json",
    "source": {
      "kind": "json",
      "value": {
        "page": "{{ $.stepsById.rounds.output.page }}",
        "count": "{{ $.stepsById.rounds.output.count }}",
        "rounds": "{{ $.stepsById.rounds.output.items }}",
        "roundType": "{{ $.stepsById.rounds.output.filters.roundType }}"
      }
    }
  }
}