$ man kimi-k3-agent-plan
/kimi-k3-agent-plan
PRICE / CALL
$0.08
USDC · base mainnet · scheme: exact
METHOD
POST
CLUSTER
modelrouterCATEGORY
uncategorized
STATUS
● live
NAME
kimi-k3-agent-plan — turn a goal into an execution-ready structured agent plan using venice's exact kimi k3 model
SYNOPSIS
POST https://x402.agentutility.ai/kimi-k3-agent-plan
Content-Type: application/json
X-PAYMENT: <signed-transferWithAuthorization>
{ ... }↳ first call →
402 Payment Required. Sign USDCtransferWithAuthorization, retry with theX-PAYMENT header.DESCRIPTION
Turn a goal into an execution-ready structured agent plan using Venice's exact Kimi K3 model. Send a goal plus optional context and constraints; receive objective, assumptions, up to six dependency-ordered steps, acceptance tests, risks, and a first action as JSON. Input is bounded and the primary output is capped at 640 tokens. Use it for agent task decomposition, implementation plans, workflow planning, acceptance criteria, or a Kimi K3 planning API.
INPUT — request schema
| property | type | description | req? |
|---|---|---|---|
| goal | string | Goal to turn into a plan, up to 2,000 characters. | required |
| context | string | Optional supporting context, up to 12,000 characters. | optional |
| constraints | array | Optional constraints, up to 12 strings of 500 characters each. | optional |
OUTPUT — response shape
| field | type | description |
|---|---|---|
| goal | string | — |
| plan | string | — |
| model | string | — |
| provider | string | — |
| usage | string | — |
EXAMPLES — two ways to call
EXAMPLE 1 · curl
curl -X POST https://x402.agentutility.ai/kimi-k3-agent-plan \
-H 'Content-Type: application/json' \
-d '{ }'first response =
402 Payment Required with payment requirements; sign + retry with X-PAYMENT.EXAMPLE 2 · mcp
# Install the MCP package for this endpoint's cluster npx -y @agentutility/mcp-<cluster> # Required: EVM private key with USDC on Base export X402_PRIVATE_KEY=0x... # Then call the kimi-k3-agent-plan tool from your MCP-aware agent.
MCP server handles payment automatically — your coding agent just calls the tool by name.
METADATA
- tags
- model-routerkimik3agentplankimi-k3-agent-plan
- env
- VENICE_API_KEY
- methods
- POST
- cluster
- modelrouter
- price
- $0.08 USDC per call
ADJACENT — other endpoints in modelrouter
| endpoint | description | price |
|---|---|---|
| kimi-k3-chat | Call Venice's Kimi K3 model through a flat-price x402 endpoint with no Venice account or API key. | $0.05 |
| model-route-recommend | Model routing API that answers 'which model should I use' from plain task requirements. | $0.01 |
| llm-cost-estimate | LLM cost estimate API, token cost estimate endpoint, and token cost calculator for comparing inference cost across models before you run… | $0.005 |
SEE ALSO