Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines a profile scrape, public search, and a grounded question into a compact evidence-grade board.
Grade whether a public social or dossier surface is backed by live evidence, partial evidence, or weak placeholder signals.
Endpoint: /v1/recipes/social-evidence-grade-board/run
Capabilities: social-evidence, evidence-grading, profile-trust
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~8k tokens saved.
Combines a profile scrape, public search, and a grounded question into a compact evidence-grade board.
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 Exa Search
Step id: search
Source: Stableenrich Firecrawl Scrape
Step id: page
Source: Stableenrich Exa Answer
Step id: answer
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": "search",
"kind": "fetch_transform",
"title": "Search public evidence",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.researchQuery }}"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "page",
"kind": "fetch_transform",
"title": "Scrape subject surface",
"request": {
"params": {
"url": "{{ $.input.profileUrl }}",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "answer",
"kind": "fetch_transform",
"title": "Ask grounded evidence question",
"request": {
"params": {
"question": "{{ $.input.referenceQuestion }}"
},
"sourceId": "stableenrich_exa_answer",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build social evidence grade board",
"request": {
"params": {
"input": {
"profileUrl": "{{ $.input.profileUrl }}",
"subjectName": "{{ $.input.subjectName }}",
"searchContext": "{{ $.stepsById.search.output }}",
"groundedAnswer": "{{ $.stepsById.answer.output }}",
"profileSurface": "{{ $.stepsById.page.output }}"
},
"prompt": "Build a social evidence grade board. Keep it bounded: at most 4 evidenceBoard items, 4 placeholderFlags, and 4 nextActions. Distinguish between live evidence, partial evidence, and weak placeholder signals.",
"responseSchema": {
"type": "object",
"required": [
"subjectName",
"evidenceGrade",
"summary",
"evidenceBoard",
"placeholderFlags",
"nextActions"
],
"properties": {
"summary": {
"type": "string",
"maxLength": 280
},
"nextActions": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Recommended follow-up actions."
},
"subjectName": {
"type": "string"
},
"evidenceBoard": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"priority",
"note"
],
"properties": {
"note": {
"type": "string"
},
"title": {
"type": "string"
},
"priority": {
"enum": [
"high",
"medium",
"low"
],
"type": "string"
}
},
"additionalProperties": false
},
"maxItems": 4,
"description": "Compact evidence-grade board items."
},
"evidenceGrade": {
"enum": [
"strong",
"mixed",
"weak"
],
"type": "string"
},
"placeholderFlags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 120
},
"maxItems": 4,
"description": "Weak-signal or placeholder flags."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing social-evidence review into a compact grading board. Stay grounded in the supplied profile surface, public search results, and grounded answer only. Do not invent live activity or hidden verification."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}