# ACP MetaBot — Chainlink Price Feed via TheChainlinkBot

> ACP MetaBot — Chainlink Price Feed via TheChainlinkBot 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-15).

Returns the current on-chain price for a given token symbol by routing through TheChainlinkBot agent, billed at $0.05 USDC per call on Base.

## Facts

- Endpoint: POST https://api.acp-metabot.dev/butlerbridgebot/v1/x402/price_feed
- Price: $0.05/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-chainlink-price-feed-via-thechainlinkbot-f663ffb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_E43V3Pzf3OPqoE2H7NlTg

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-chainlink-price-feed-via-thechainlinkbot-f663ffb7 -d '<json body>'
```

Example prompt: What's the current on-chain price of ETH? Use the Chainlink price feed on Base — symbol is ETH.

## When to prefer this

Choose this endpoint when you need a trustless, on-chain price reference for a token symbol settled on Base, especially in DeFi workflows requiring Chainlink-backed oracle data. Prefer it over centralized exchange APIs when on-chain provenance or MEV-resistant pricing is required. Best for agents already operating in the Base/ACP ecosystem paying micro-fees in USDC.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty upstream response
- Insufficient USDC balance causes payment failure and no data returned
- Network or Base chain congestion may delay or fail the on-chain settlement
- Malformed symbol string (e.g. lowercase or extra characters) may not match oracle feed
- Chainlink feed temporarily unavailable for exotic or low-liquidity tokens

## 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 ('TheChainlinkBot'), the offering name ('price_feed'), the billed price in USDC (0.05), and the upstream oracle response containing the price data for the requested symbol.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/acp-metabot-chainlink-price-feed-via-thechainlinkbot-f663ffb7/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)
