402.bot
Recipe
live $0.0100 premium Provider Monitoring

Provider Endpoint Onboarding Checklist

Turn provider docs and public context into a compact onboarding checklist for one endpoint family.

$0.0100price
3steps
5sources
8ktokens saved
4tool calls compressed
median latency
StableEnrichGeminiStableenrich Firecrawl ScrapeStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/provider-endpoint-onboarding-checklist/run
Capabilities: provider-onboarding, endpoint-checklist, docs-intel

Why pay for this?

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

Scrapes provider docs, adds bounded public context, and returns a compact onboarding 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

Pipeline

Stage 1

Scrape provider docs

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: docs

Stage 2

Search provider context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Build provider endpoint onboarding 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

Scrape provider docs

{
  "id": "docs",
  "kind": "fetch_transform",
  "title": "Scrape provider docs",
  "request": {
    "params": {
      "url": "{{ $.input.providerUrl }}"
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Search provider context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search provider context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.providerUrl }} {{ $.input.capability }} x402 docs api payments"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build provider endpoint onboarding checklist

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build provider endpoint onboarding checklist",
  "request": {
    "params": {
      "input": {
        "docs": "{{ $.stepsById.docs.output }}",
        "capability": "{{ $.input.capability }}",
        "providerUrl": "{{ $.input.providerUrl }}",
        "publicContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Build an onboarding checklist for a provider endpoint family. Focus on readiness, the checklist itself, the best evidence links, and clear next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "providerUrl",
          "capability",
          "readinessStatus",
          "summary",
          "checklist",
          "evidenceLinks",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "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": "Onboarding checklist items."
          },
          "capability": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "providerUrl": {
            "type": "string"
          },
          "evidenceLinks": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Key evidence links worth keeping open."
          },
          "readinessStatus": {
            "enum": [
              "ready",
              "watch",
              "blocked"
            ],
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing provider onboarding into a compact checklist for operators. Stay grounded in the supplied docs scrape and public search context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}