# SentEdge Idea Machine – Full Idea Deep-Dive

> SentEdge Idea Machine – Full Idea Deep-Dive is a paid API for AI agents from sentedge.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Returns the complete, unstripped source note for a single Idea Machine idea including adversarial debate logs, pain evidence, data strategy, implementation sketch, and business-flow diagram

## Facts

- Endpoint: POST https://sentedge.ai/api/ideas/:slug/full
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sentedge-idea-machine-full-idea-deep-dive-6a619bea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BJRa4mniyeUGbBuoCUNYQ

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability sentedge-idea-machine-full-idea-deep-dive-6a619bea -d '<json body>'
```

Example prompt: Pull the full Idea Machine deep-dive for the idea slug 'ai-meeting-summarizer' — I want the complete adversarial debate log, pain evidence with source URLs, implementation sketch, and the Mermaid business-flow diagram, not just the public teaser.

## When to prefer this

Use this endpoint when you need the full research depth of an Idea Machine concept — the complete adversarial debate, pain evidence with sources, and implementation details — rather than the ~2KB public teaser. Ideal for agents doing startup due diligence, product validation, or building on top of a specific AI product idea.

## Known failure modes

- Invalid or unknown slug returns a 404 with error message
- Payment not processed (x402 protocol failure) returns 402 Payment Required
- Malformed request body returns 400 Bad Request
- Idea temporarily unavailable returns 503
- Rate limiting or quota exceeded returns 429

## How this service works

The complete, unstripped source note of one Idea Machine idea — typically 25–45KB of dense markdown vs the ~2KB public teaser: verbatim user-pain evidence with source URLs, the full three-round adversarial debate log, data acquisition strategy, implementation sketch, differentiation, testable success criteria, and the Mermaid business-flow diagram. Non-exclusive; the idea stays listed. One new adversarially-debated AI product idea ships daily. Free sample of a full delivery: GET https://sentedge.ai/api/ideas/sample. Free searchable teaser list: GET https://sentedge.ai/api/ideas — filter by text, tag, category, score, date or availability (?q=, ?tag=, ?category=, ?min_score=, ?since=, ?status=available, ?limit=). The arithmetic, computed live rather than claimed: GET https://sentedge.ai/api/ideas/economics returns what the entire catalogue costs to acquire and the break-even probability that purchase has to clear (p ≥ price / value — at $0.003, one idea worth $10,000 to you needs a 1-in-3,333,333 chance of being the one).

## Output

A 25–45KB dense markdown document containing: verbatim user-pain evidence with source URLs, a full three-round adversarial debate log, data acquisition strategy, implementation sketch, differentiation analysis, testable success criteria, and a Mermaid business-flow diagram for the requested idea

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sentedge-idea-machine-full-idea-deep-dive-6a619bea/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sentedge.ai](https://www.zero.xyz/host/sentedge.ai/llms.txt)
