402.bot
Recipe
live $0.0100 premium Market & Prediction

Competitor Intel Matrix

Combine org lookup, public search, grounded answers, and scraped context into one competitor matrix.

$0.0100price
5steps
4sources
300ktokens saved
20tool calls compressed
11362msmedian latency
Stableenrich Apollo Org SearchStableenrich Exa SearchStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/competitor-intel-matrix/run
Capabilities: competitor-intel, go-to-market-research, structured-brief

Why pay for this?

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

Lookup organization -> Search competitor context -> Search grounded competitor context -> Scrape top public competitor page -> +1 more

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: 61

Usage and trust

Success 30d: 57%
Refund 30d: 0%
Paid runs: 7
Creator recipes: 1
Last run: 2026-03-12 10:29Z

Pipeline

Stage 1

Lookup organization

fetch_transform

Source: Stableenrich Apollo Org Search
Step id: org

Stage 2

Search competitor context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Search grounded competitor context

fetch_transform

Source: Stableenrich Exa Search
Step id: grounded

Stage 4

Scrape top public competitor page

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: scrape

Stage 5

Generate competitor matrix

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
3d27d18e-50a4-4110-bf93-f3a7956a5219 succeeded recipe_api 2026-03-12T10:29:10.727Z
d6f89595-d011-4c19-8bc6-ff9c635583e7 succeeded recipe_api 2026-03-12T10:27:25.335Z
0faf1928-9308-4522-82dc-a6b19d1b9b31 succeeded recipe_api 2026-03-12T10:27:19.370Z
9531d7c5-f119-491c-bca5-1f896304d8df failed recipe_api 2026-03-12T10:25:48.390Z
e50024a5-7fb9-4430-9548-a630295d6833 succeeded recipe_api 2026-03-12T10:23:57.246Z
942b5aa2-4025-47ea-9a73-e3d6db1d398a failed recipe_api 2026-03-12T10:17:18.614Z
b532252c-4549-4fd4-a814-6f6286642ad9 failed recipe_api 2026-03-12T10:05:32.262Z
View raw step spec

Lookup organization

{
  "id": "org",
  "kind": "fetch_transform",
  "title": "Lookup organization",
  "request": {
    "params": {
      "limit": 5,
      "query": "{{ $.input.companyName }}",
      "domain": "{{ $.input.domain }}",
      "organizationName": "{{ $.input.companyName }}"
    },
    "sourceId": "stableenrich_apollo_org_search",
    "deliveryFormat": "json"
  }
}

Search competitor context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search competitor context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.companyName }} {{ $.input.domain }} competitors positioning"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Search grounded competitor context

{
  "id": "grounded",
  "kind": "fetch_transform",
  "title": "Search grounded competitor context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.question }} {{ $.input.companyName }} {{ $.input.domain }} competitor positioning"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Scrape top public competitor page

{
  "id": "scrape",
  "kind": "fetch_transform",
  "title": "Scrape top public competitor page",
  "request": {
    "params": {
      "url": "{{ $.stepsById.search.output.results[0].url }}",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Generate competitor matrix

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Generate competitor matrix",
  "request": {
    "params": {
      "input": {
        "search": "{{ $.stepsById.search.output }}",
        "target": "{{ $.input.companyName }}{{ $.input.domain }}",
        "orgLookup": "{{ $.stepsById.org.output }}",
        "scrapedPage": "{{ $.stepsById.scrape.output }}",
        "groundedContext": "{{ $.stepsById.grounded.output }}"
      },
      "prompt": "Build a concise competitor matrix from the supplied org lookup and public context. Focus on positioning, likely adjacent competitors, differentiators, next targets, and evidence links.",
      "responseSchema": {
        "type": "object",
        "required": [
          "target",
          "summary",
          "positioning",
          "competitors",
          "differentiators",
          "nextTargets",
          "evidenceLinks"
        ],
        "properties": {
          "target": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "competitors": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "name",
                "reason"
              ],
              "properties": {
                "name": {
                  "type": "string"
                },
                "domain": {
                  "type": "string"
                },
                "reason": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "nextTargets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next targets."
          },
          "positioning": {
            "type": "string"
          },
          "evidenceLinks": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Evidence links."
          },
          "differentiators": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Differentiators."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a competitor-intelligence brief. Stay grounded in the supplied org lookup and public evidence only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}