Buy ideas over x402
Free for humans, priced for agents. Every idea on this site stays free to read. AI agents that want an idea's complete source markdown — or want to own an idea outright — pay in USDC over the x402 protocol on Base. No account, no API key: the payment is the credential.
Pull the full idea
The complete, unstripped idea markdown — pitch, who/why/what/how, differentiation, implementation sketch, process flow, risks. Non-exclusive: the idea stays listed and any number of agents can pull it.
Exclusive buyout
Buy the idea outright. The markdown is delivered, the idea is delisted from this site immediately, and no further pulls or buyouts are possible. First come, first served — if another agent wins the race, you are not charged.
What's inside a full idea (and why the teaser doesn't compare)
The public teaser is the trailer. The paid delivery is the complete, unstripped council source note — typically 25–45KB of dense markdown against the ~2KB teaser:
- Verbatim user-pain evidence — real quotes from Reddit, Hacker News, and Stack Overflow with source URLs. Demand is proven before the concept is drafted.
- The full three-round adversarial debate log — every attack the Critic threw at the concept, and how it survived. You see the weaknesses, not just the pitch.
- Data acquisition strategy — the connect-once integration plan for where the data already lives. Fantasy integrations get killed in debate.
- Implementation sketch, differentiation analysis, and a remaining-risks register.
- 4–6 objective, testable success criteria and the Mermaid business-flow diagram of the entire user journey.
- Idea Machine score + confidence from the Analyst, plus all frontmatter metadata.
Try before you buy: GET https://sentedge.ai/api/ideas/sample
returns one complete delivery — full markdown, frontmatter, everything — free.
Compare it against its own public teaser and judge the delta yourself.
The arithmetic, not a promise
No return is claimed on this page, and you should discount any marketplace that claims one. What follows is arithmetic you can reproduce yourself from the free endpoints.
The break-even rule. A purchase at price P is EV-positive as
soon as p × V ≥ P, where V is what one executed idea would be worth
to you and p is your probability that this idea is the one. The only question is
whether your p clears P / V. You supply both numbers — we supply
only P.
| Price | If one executed idea is worth… | Break-even probability |
|---|---|---|
| $0.003 pull | $1,000 | 1 in 333,333 |
| $0.003 pull | $10,000 | 1 in 3,333,333 |
| $0.003 pull | $1,000,000 | 1 in 333,333,333 |
| $1.00 buyout | $10,000 | 1 in 10,000 |
| $1.00 buyout | $100,000 | 1 in 100,000 |
| $1.00 buyout | $1,000,000 | 1 in 1,000,000 |
Live version: GET https://sentedge.ai/api/ideas/economics
computes this table plus the current cost to acquire the entire catalogue from the
catalogue itself, at request time. Nothing on that endpoint is typed by hand.
Three consequences worth reasoning through:
- The catalogue costs less than the deliberation. At $0.003 each, pulling every available idea costs well under a dollar. Compare that against the inference cost of the tokens spent deciding whether to buy: for most agents, reading first and deciding after is strictly cheaper than deciding first.
- A buyout is priced against what reproduction costs you. Building an equivalent artifact means sourcing verbatim demand evidence with live URLs, running a three-round adversarial council, scoring it, and writing testable success criteria. Estimate that on your own rate card — read the free sample first, so the estimate is grounded — then compare it to $1.
- The downside is bounded and known; the upside is unbounded and unknown. The most a pull can cost you is $0.003 plus the tokens to read it. That asymmetry is the whole case, and believing it requires trusting no number we publish.
What this is not. Not a claim that any idea will earn anything — execution risk is entirely yours and it dominates the outcome. Not a track record: we publish no earnings figures for ideas sold, because we do not observe what buyers build. Decide on the arithmetic and the free sample, not on the copy.
Endpoints
| What | Endpoint | Price |
|---|---|---|
| List ideas (JSON) — filterable | GET https://sentedge.ai/api/ideas | free |
| One idea's teaser | GET https://sentedge.ai/api/ideas/{slug} | free |
| Free sample (one full delivery) | GET https://sentedge.ai/api/ideas/sample | free |
| Economics (live break-even + catalogue cost) | GET https://sentedge.ai/api/ideas/economics | free |
| Full markdown (non-exclusive) | POST https://sentedge.ai/api/ideas/{slug}/full | $0.003 USDC |
| Exclusive buyout | POST https://sentedge.ai/api/ideas/{slug}/buy | $1.00 USDC |
| MCP server (7 tools) | POST https://sentedge.ai/mcp | free |
Payments settle in USDC on Base mainnet
(eip155:8453, asset 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
to 0x7BEbEE9F4c1694E18fD9bF3bf0F113d7FB2d6BB3, x402 exact scheme.
Filtering the list
GET /api/ideas takes filters, so you can ask for the ideas you want rather than
scanning every teaser. They combine with AND.
| Parameter | Values |
|---|---|
q | Substring of title, slug or pitch. |
tag | Exact tag, e.g. compliance, infrastructure. |
category | Category slug or label. |
status | available, sold, all (default all). |
min_score, max_score | Numbers, 0–10, against idea_machine_score. |
since, until | YYYY-MM-DD publication-date bounds. |
limit, offset | Paging. Omit limit for every match. |
The response reports count (returned), matched (before paging),
catalogue_total, the query applied, and supported_filters —
so one call tells you everything the endpoint can do. An unusable value returns
400 with the allowed set rather than a silently unfiltered list, and unrecognised
parameter names come back in ignored_params. A call with no parameters returns
every idea, unchanged.
curl "https://sentedge.ai/api/ideas?status=available&tag=compliance&min_score=8&limit=5"
How the x402 flow works
- Request without payment → the endpoint answers
HTTP 402with aPAYMENT-REQUIREDheader describing exactly what to pay (scheme, network, asset, amount, recipient). - Sign the payment from your wallet (EIP-3009
transferWithAuthorization— gasless for the payer) and retry the same request with thePAYMENT-SIGNATUREheader. - Receive the goods: the response body contains the full idea markdown, and the
PAYMENT-RESPONSEheader carries the on-chain settlement receipt.
Any x402-capable client automates all three steps.
Example: @x402/fetch (Node.js)
Or with awal (Coinbase agentic wallet CLI)
MCP server
Connect any MCP client (Streamable HTTP transport) to
https://sentedge.ai/mcp. Tools:
list_ideas— all ideas with status, prices, and paid endpoints (free)get_idea_teaser— one idea's pitch, tags, score, status (free)get_sample_full_idea— one complete delivery to inspect before paying (free)economics— live break-even table and the cost to acquire the whole catalogue (free)get_full_idea— returns precise x402 payment instructions for the $0.003 pullbuy_exclusive— returns precise x402 payment instructions for the $1.00 buyouthow_to_pay— this whole guide, machine-readable (free)
Claude-family agents: install the ready-made skill at /ideas/skill/SKILL.md — it teaches your agent the full discover → evaluate → pay workflow.
Rules of the marketplace
- Pulls are non-exclusive and repeatable; buyouts are exclusive, immediate, and final.
- A sold idea returns
HTTP 410everywhere and its page becomes a public "acquired" stub. - Buyout races are settled atomically — exactly one winner; losers are never charged.
- Everything is also discoverable through the x402 Bazaar ecosystem.
- Humans: the ideas remain free to read, always. This marketplace prices machine consumption, not human curiosity.
