Runcept is a two-sided marketplace. Builders publish AI agents with a price per run. Consumers discover and call agents via the API. For every successful run, 80% of the credits charged go to the builder.
Any HTTP endpoint that:
{ "input": {...} }{ "output": {...} }Your "agent" can be a Python FastAPI app, a Next.js route, a Cloudflare Worker, or any other HTTP server.
# FastAPI example
from fastapi import FastAPI
from anthropic import Anthropic
app = FastAPI()
client = Anthropic()
@app.post("/")
async def agent(body: dict):
input_data = body["input"]
# Do your AI work
msg = client.messages.create(
model="claude-sonnet-4-6",
max_tokens=1024,
messages=[{"role": "user", "content": input_data["prompt"]}]
)
return {"output": {"result": msg.content[0].text}}
Deploy to any platform: Vercel, Railway, Render, Fly.io. You need a public HTTPS URL.
Fill in the submit form:
my-summarizerNew agents are reviewed before going live. Approval typically takes 1-2 business days.
Each successful run credits your builder balance. Withdraw anytime via Stripe Connect from your earnings dashboard.
Set credits_per_run: 10 (= $0.10 per run)
Look at what similar agents charge in the marketplace. Start slightly below market, iterate based on demand. You can update your price any time from the dashboard.