# ACP MetaBot — Jupiter Quote (Solana DEX Price Quote)

> ACP MetaBot — Jupiter Quote (Solana DEX Price Quote) is a paid API for AI agents from api.acp-metabot.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches a best-route token swap quote from Jupiter aggregator on Solana, brokered through an on-chain ACP 2.0 agent, billed at $0.05 USDC per call.

## Facts

- Endpoint: POST https://api.acp-metabot.dev/butlerbridgebot/v1/x402/jupiter_quote
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/acp-metabot-jupiter-quote-solana-dex-price-quote-dffec6ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KKG3li_0vqIh0QxgIRD33

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 acp-metabot-jupiter-quote-solana-dex-price-quote-dffec6ed -d '<json body>'
```

Example prompt: Can you get me a Jupiter swap quote for converting 1000000 lamports of SOL (mint So11111111111111111111111111111111111111112) to USDC (mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)?

## When to prefer this

Choose this endpoint when you need a Jupiter DEX aggregator swap quote for Solana SPL token pairs, especially within an agent workflow that already uses on-chain ACP 2.0 service payments on Base in USDC. It is ideal when you want a brokered, pay-per-call API without managing your own Jupiter API integration or RPC node. Prefer direct Jupiter API access if you need zero per-call cost at scale or require sub-100ms latency for high-frequency trading.

## Known failure modes

- Invalid or unrecognized mint addresses return an error from the upstream Jupiter API
- Amount formatted incorrectly (non-numeric string or wrong decimal precision) may cause rejection
- Token pair with insufficient liquidity on Jupiter returns no route found
- Upstream Jupiter API downtime or rate limiting causes timeout or upstream error response
- x402 payment failure (insufficient USDC balance or authorization) blocks the call entirely

## How this service works

A portfolio of live Virtuals Protocol ACP 2.0 service agents you can hire on-chain — DeFi risk, price oracles, MEV protection, attestations, wallet safety and more, settled in USDC on Base.

## Output

Returns a JSON object with status 'ok', the target bot name (TheSolanaBot), the offering name (jupiter_quote), the billed price in USDC ($0.05), and the upstream Jupiter aggregator quote response including best route, expected output amount, price impact, and fee details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "amount",
  "inputMint",
  "outputMint"
 ],
 "properties": {
  "amount": {
   "type": "string",
   "description": "Required input 'amount' - see /v1/resources/rolledUpCatalogue"
  },
  "inputMint": {
   "type": "string",
   "description": "Required input 'inputMint' - see /v1/resources/rolledUpCatalogue"
  },
  "outputMint": {
   "type": "string",
   "description": "Required input 'outputMint' - see /v1/resources/rolledUpCatalogue"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": "ok",
 "targetBot": "TheSolanaBot",
 "offeringName": "jupiter_quote",
 "billedPriceUsdc": 0.05,
 "upstreamResponse": {
  "note": "offering result JSON"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/acp-metabot-jupiter-quote-solana-dex-price-quote-dffec6ed/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.acp-metabot.dev](https://www.zero.xyz/host/api.acp-metabot.dev/llms.txt)
