# Arch Tools — Crypto Sentiment

> Arch Tools — Crypto Sentiment is a paid API for AI agents from archtools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns sentiment analysis for a cryptocurrency by CoinGecko coin ID

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/crypto-sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-crypto-sentiment-fbb51be4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HWM2sCP0tTnkFkArhXxW1

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 arch-tools-crypto-sentiment-fbb51be4 -d '<json body>'
```

Example prompt: What's the current market sentiment for bitcoin right now — is it bullish or bearish?

## When to prefer this

Use this endpoint when you need fast, per-coin crypto sentiment scoring by CoinGecko coin ID, especially within automated agent workflows or trading pipelines that accept x402 micropayments on Base. Prefer this over general-purpose sentiment endpoints when you specifically need cryptocurrency market sentiment rather than generic text sentiment.

## Known failure modes

- Invalid or unrecognized CoinGecko coin ID returns an error
- Missing required 'symbol' field returns a validation error
- Upstream data unavailability may result in incomplete or null sentiment data
- Payment failure (x402) if USDC balance is insufficient

## How this service works

Get community sentiment for a cryptocurrency. Pay per call with USDC (x402) or credits - archtools.dev

## Output

A JSON object containing sentiment data for the specified cryptocurrency, likely including a sentiment score or classification (e.g. positive/negative/neutral or bullish/bearish) based on the given CoinGecko coin ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "CoinGecko coin ID (e.g. bitcoin, ethereum)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-crypto-sentiment-fbb51be4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
