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.
Turn provider docs and public context into a compact onboarding checklist for one endpoint family.
Endpoint: /v1/recipes/provider-endpoint-onboarding-checklist/run
Capabilities: provider-onboarding, endpoint-checklist, docs-intel
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.
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
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Source: Stableenrich Firecrawl Scrape
Step id: docs
Source: Stableenrich Exa Search
Step id: search
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "docs",
"kind": "fetch_transform",
"title": "Scrape provider docs",
"request": {
"params": {
"url": "{{ $.input.providerUrl }}"
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"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"
}
}
{
"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"
}
}