# TickersFeed AI Asset Comparison

> TickersFeed AI Asset Comparison is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

AI-powered side-by-side comparison of two financial assets with strengths, weaknesses, and a verdict

## Facts

- Endpoint: GET https://api.tickersfeed.net/compare/COIN/VS
- 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/tickersfeed-ai-asset-comparison-76ae6e51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bmTKVlpfftcSzXJQkgbbQ

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 tickersfeed-ai-asset-comparison-76ae6e51
```

Example prompt: Can you give me an AI side-by-side comparison of AAPL and MSFT — I want to see the strengths and weaknesses of each and get a verdict on which one looks stronger right now?

## When to prefer this

Choose this endpoint when a user wants a qualitative, AI-generated head-to-head comparison of two assets with a clear verdict, rather than raw price data or independent stock analysis. Ideal when the user explicitly wants to decide between two investments or understand relative strengths.

## Known failure modes

- Invalid or unrecognized symbol returns error or empty analysis
- Payment failure if USDC balance insufficient ($0.05 per call)
- Both symbols identical may produce trivial or degenerate comparison
- Network timeout if AI generation takes too long
- Unsupported asset class (e.g. private equity) returns no data

## How this service works

AI side-by-side comparison of two assets — strengths, weaknesses, and verdict. $0.05 USDC per call.

## Output

Returns a JSON object with both asset symbols, an AI-generated analysis including a narrative summary and a definitive verdict string indicating which asset has stronger momentum or fundamentals and why.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "symbol1": {
       "type": "string"
      },
      "symbol2": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol1": {
       "type": "string",
       "description": "First asset symbol"
      },
      "symbol2": {
       "type": "string",
       "description": "Second asset symbol"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-ai-asset-comparison-76ae6e51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
