{
  "x402Version": 2,
  "id": 8309,
  "slug": "8309",
  "resource": "https://research.lumenhouse.xyz/v1/research",
  "description": "Test a crypto, protocol, company, or market investment thesis with current cited evidence. Returns thesis status, verdict, confidence, catalysts, risks, red flags, invalidation conditions, monitoring triggers, unknowns, and next diligence steps as structured JSON. Useful to trading and portfolio agents as a research input; never executes trades.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xfdfadd01edcbabe025931e45cdc8532b00218500",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "1000000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "horizon": "months",
            "question": "What evidence supports or rejects the current investment thesis?",
            "risk_tolerance": "high",
            "subject": "Virtuals Protocol"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "model": "gpt-5.6-sol",
            "report": {
              "as_of": "2026-08-27",
              "catalysts": [
                "Sustained protocol revenue growth."
              ],
              "confidence": "medium",
              "disclaimer": "Research only; not financial advice.",
              "evidence": [
                {
                  "claim": "Example evidence claim",
                  "source_title": "Primary source",
                  "source_url": "https://example.com/source"
                }
              ],
              "executive_summary": "Evidence is mixed; further diligence is warranted.",
              "invalidation_conditions": [
                "Protocol revenue declines for two consecutive quarters."
              ],
              "monitoring_triggers": [
                "Official quarterly revenue disclosure."
              ],
              "next_steps": [
                "Verify revenue and treasury disclosures."
              ],
              "red_flags": [
                "Unverified partnership claims."
              ],
              "risks": [
                "Token value capture may remain weak."
              ],
              "subject": "Example Asset",
              "thesis": [
                "Adoption is growing, but monetization evidence remains incomplete."
              ],
              "thesis_status": "mixed",
              "unknowns": [
                "Future token value-capture mechanism."
              ],
              "verdict": "watch"
            },
            "report_id": "lr_example"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "campaign": {
                    "description": "Optional non-secret campaign label",
                    "type": "string"
                  },
                  "client_tag": {
                    "description": "Optional non-secret buyer attribution label",
                    "type": "string"
                  },
                  "context": {
                    "description": "Optional factual context",
                    "type": "string"
                  },
                  "horizon": {
                    "enum": [
                      "days",
                      "weeks",
                      "months",
                      "years"
                    ],
                    "type": "string"
                  },
                  "question": {
                    "description": "Decision-oriented research question",
                    "type": "string"
                  },
                  "risk_tolerance": {
                    "enum": [
                      "low",
                      "medium",
                      "high"
                    ],
                    "type": "string"
                  },
                  "subject": {
                    "description": "Asset, company, protocol, or investment subject",
                    "type": "string"
                  }
                },
                "required": [
                  "subject",
                  "question"
                ]
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "model": {
                    "type": "string"
                  },
                  "report": {
                    "properties": {
                      "as_of": {
                        "type": "string"
                      },
                      "catalysts": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "confidence": {
                        "enum": [
                          "low",
                          "medium",
                          "high"
                        ],
                        "type": "string"
                      },
                      "disclaimer": {
                        "type": "string"
                      },
                      "evidence": {
                        "items": {
                          "type": "object"
                        },
                        "type": "array"
                      },
                      "executive_summary": {
                        "type": "string"
                      },
                      "invalidation_conditions": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "monitoring_triggers": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "next_steps": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "red_flags": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "risks": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "subject": {
                        "type": "string"
                      },
                      "thesis": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "thesis_status": {
                        "enum": [
                          "supported",
                          "contradicted",
                          "mixed",
                          "insufficient_evidence"
                        ],
                        "type": "string"
                      },
                      "unknowns": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "verdict": {
                        "enum": [
                          "avoid",
                          "watch",
                          "neutral",
                          "consider"
                        ],
                        "type": "string"
                      }
                    },
                    "required": [
                      "subject",
                      "as_of",
                      "verdict",
                      "thesis_status",
                      "confidence",
                      "executive_summary",
                      "thesis",
                      "catalysts",
                      "risks",
                      "red_flags",
                      "invalidation_conditions",
                      "monitoring_triggers",
                      "evidence",
                      "unknowns",
                      "next_steps",
                      "disclaimer"
                    ],
                    "type": "object"
                  },
                  "report_id": {
                    "type": "string"
                  }
                },
                "required": [
                  "report_id",
                  "model",
                  "report"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "research.lumenhouse.xyz",
  "lastUpdated": "2026-09-02T16:37:53.454Z",
  "quality": {
    "calls30d": 3,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-02T16:37:53.125Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "research.lumenhouse.xyz",
    "manifest_name": "research.lumenhouse.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}