# JarvisClaw Intent Resolver

> JarvisClaw Intent Resolver is a paid API for AI agents from uat.jarvisclaw.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Resolves a natural language intent string to a routed API action using an AI gateway with pay-per-call billing in USDC

## Facts

- Endpoint: GET https://uat.jarvisclaw.ai/v1/intent/resolve/natural
- 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/jarvisclaw-intent-resolver-0e894890
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EanZcSKx933-ByO-Apq1X

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 jarvisclaw-intent-resolver-0e894890
```

Example prompt: Can you resolve this intent for me — 'find the current weather in San Francisco' — and route it to the right API service automatically?

## When to prefer this

Choose this endpoint when you have a natural language intent string that needs to be automatically interpreted and routed to the appropriate downstream API without knowing which specific service to call. It is especially useful in agentic workflows where the action is not predetermined and smart routing is needed. Best suited when pay-per-call micropayment via USDC on Base or Solana is acceptable and OpenAI-compatible response format is desired.

## Known failure modes

- Missing or empty 'intent' field returns a 400 validation error
- Ambiguous intent that cannot be confidently routed may return a low-confidence or null route
- Payment failure via x402 (insufficient USDC balance) results in a 402 Payment Required response
- Unresolvable or out-of-scope intents may return a 404 or empty routing result
- UAT environment instability may cause intermittent 500 errors

## How this service works

AI API Gateway with smart routing, pay per call via x402. OpenAI-compatible. Settled in USDC on Base & Solana.

## Output

Returns a resolved intent with routing metadata indicating which downstream API or service was selected, along with the processed response from that service based on the natural language input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "intent": {
   "type": "string",
   "description": "Natural language intent"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jarvisclaw-intent-resolver-0e894890/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from uat.jarvisclaw.ai](https://www.zero.xyz/host/uat.jarvisclaw.ai/llms.txt)
