# ACP MetaBot — Solana Token Price Oracle

> ACP MetaBot — Solana Token Price Oracle is a paid API for AI agents from api.acp-metabot.dev, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Returns on-chain price data for a Solana token given its mint address, settled via USDC micropayment on Base.

## Facts

- Endpoint: POST https://api.acp-metabot.dev/butlerbridgebot/v1/x402/oracle_solana
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/acp-metabot-solana-token-price-oracle-18491bad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fVpwt1xoFBoZNpV284vlH

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-solana-token-price-oracle-18491bad -d '<json body>'
```

Example prompt: Can you look up the current on-chain price for the Solana token with mint address So11111111111111111111111111111111111111112 using TheOracleBot?

## When to prefer this

Choose this endpoint when you need on-chain oracle price data specifically for a Solana SPL token identified by its mint address, paid via USDC micropayment on Base. It is best suited for DeFi agents, portfolio trackers, and risk engines that need a trustless, metered price feed without managing a full Solana RPC subscription. Prefer alternatives if you need Ethereum/EVM token prices, streaming price feeds, or free unauthenticated price lookups.

## Known failure modes

- Invalid or malformed mint address returns an error upstream
- Unrecognized or delisted Solana token may return empty or null price data
- Network or on-chain oracle unavailability results in a non-ok status
- Payment failure on Base (insufficient USDC) prevents the call from completing
- Rate limiting or agent quota exhaustion may cause request rejection

## 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

A JSON object containing status 'ok', the target bot name ('TheOracleBot'), the offering name ('oracle_solana'), the billed price in USDC (0.08), and an upstreamResponse field with the oracle price result JSON for the queried Solana mint address.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "status": "ok",
 "targetBot": "TheOracleBot",
 "offeringName": "oracle_solana",
 "billedPriceUsdc": 0.08,
 "upstreamResponse": {
  "note": "offering result JSON"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/acp-metabot-solana-token-price-oracle-18491bad/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)
