402.bot
Recipe
live $0.0075 medium Provider Monitoring

x402 Facilitator Coverage Check

Combine live route candidates and bounded public facilitator evidence into a compact coverage and fallback board.

$0.0075price
4steps
7sources
9ktokens saved
4tool calls compressed
median latency
402.bot RouteStableEnrichGeminiRoute Capability CandidatesStableenrich Exa SearchStableenrich Exa AnswerGoogle Gemini Flash Structured

Endpoint: /v1/recipes/x402-facilitator-coverage-check/run
Capabilities: facilitator, coverage-check, payment-lane

Why pay for this?

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

Pairs live route candidates with public facilitator context to return a compact Base coverage and fallback board.

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

Pipeline

Stage 1

Rank route candidates

fetch_transform

Source: Route Capability Candidates
Step id: routes

Stage 2

Search facilitator context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Ask grounded facilitator question

fetch_transform

Source: Stableenrich Exa Answer
Step id: answer

Stage 4

Build x402 facilitator coverage check

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

Rank route candidates

{
  "id": "routes",
  "kind": "fetch_transform",
  "title": "Rank route candidates",
  "request": {
    "params": {
      "limit": 5,
      "network": "{{ $.input.networkFocus }}",
      "capability": "{{ $.input.requiredCapability }}"
    },
    "sourceId": "route_capability_candidates",
    "deliveryFormat": "json"
  }
}

Search facilitator context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search facilitator context",
  "request": {
    "params": {
      "count": 6,
      "query": "{{ $.input.researchQuery }}"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Ask grounded facilitator question

{
  "id": "answer",
  "kind": "fetch_transform",
  "title": "Ask grounded facilitator question",
  "request": {
    "params": {
      "question": "{{ $.input.operatorGoal }}"
    },
    "sourceId": "stableenrich_exa_answer",
    "deliveryFormat": "json"
  }
}

Build x402 facilitator coverage check

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build x402 facilitator coverage check",
  "request": {
    "params": {
      "input": {
        "routes": "{{ $.stepsById.routes.output }}",
        "networkFocus": "{{ $.input.networkFocus }}",
        "operatorGoal": "{{ $.input.operatorGoal }}",
        "searchContext": "{{ $.stepsById.search.output }}",
        "groundedAnswer": "{{ $.stepsById.answer.output }}",
        "facilitatorNames": "{{ $.input.facilitatorNames }}",
        "requiredCapability": "{{ $.input.requiredCapability }}"
      },
      "prompt": "Build an x402 facilitator coverage check. Focus on the best-fit facilitator, the bounded coverage rows, the fallback options, and the next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "networkFocus",
          "requiredCapability",
          "bestFitFacilitator",
          "summary",
          "facilitatorRows",
          "fallbackOptions",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string",
            "maxLength": 280
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Next actions."
          },
          "networkFocus": {
            "type": "string"
          },
          "facilitatorRows": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "facilitator",
                "fit",
                "evidenceNote",
                "operatorNote"
              ],
              "properties": {
                "fit": {
                  "enum": [
                    "strong",
                    "usable",
                    "weak"
                  ],
                  "type": "string"
                },
                "facilitator": {
                  "type": "string",
                  "maxLength": 80
                },
                "evidenceNote": {
                  "type": "string",
                  "maxLength": 120
                },
                "operatorNote": {
                  "type": "string",
                  "maxLength": 120
                }
              },
              "additionalProperties": false
            },
            "maxItems": 5,
            "description": "Facilitator coverage rows."
          },
          "fallbackOptions": {
            "type": "array",
            "items": {
              "type": "string",
              "maxLength": 120
            },
            "maxItems": 4,
            "description": "Fallback options or warnings."
          },
          "bestFitFacilitator": {
            "type": "string"
          },
          "requiredCapability": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing facilitator choice into a bounded operator board. Stay grounded in the supplied route shortlist, public search context, and grounded answer only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}