# AlphaPulse Compare

> AlphaPulse Compare is a paid API for AI agents from alphapulse-omega.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Side-by-side comparison of 2-3 signal providers, copy traders, EAs, or managed accounts with a decisive recommendation

## Facts

- Endpoint: GET https://alphapulse-omega.vercel.app/api/alpha/compare
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-compare-b1a5c6ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3v0W3ZFBJlOSiIEo6Ht5_

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 alphapulse-compare-b1a5c6ba
```

Example prompt: Can you compare ZuluTrade's 'ForexMasterPro' signal provider against MQL5's 'TrendFollower EA' and Darwinex's 'DWIN-Alpha' managed account, then tell me decisively which one I should follow based on verified performance and risk metrics?

## When to prefer this

Use this endpoint when a user has already identified 2-3 specific candidates and needs a head-to-head comparison with a clear winner recommendation, rather than broad discovery (use AlphaPulse Discover) or deep due diligence on a single provider (use AlphaPulse Vet)

## Known failure modes

- Unknown or unrecognized provider names return empty or partial results
- Fewer than 2 or more than 3 candidates specified may cause validation error
- Providers from unsupported platforms may not have sufficient data
- Rate limiting or payment failure returns 402 or 429 error
- Stale data if provider has recently changed performance profile

## How this service works

Side-by-side comparison of 2-3 signal providers, copy traders, EAs or managed accounts with a decisive recommendation. For investing agents choosing between strategies.

## Output

A structured side-by-side comparison of 2-3 specified signal providers, copy traders, EAs, or managed accounts including performance statistics, drawdown, risk scores, fee structures, and a clear decisive recommendation on which to choose

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | zh | ar | ja | ko"
      },
      "type": {
       "type": "string"
      },
      "providers": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "broker_id": "string | null",
  "comparison": [
   {
    "name": "FXBlue Trader Pro",
    "type": "signal",
    "score": 8.2
   }
  ],
  "recommended": "FXBlue Trader Pro",
  "providers_compared": [
   "FXBlue Trader Pro",
   "ZuluTrade Alpha"
  ],
  "recommendation_reason": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-compare-b1a5c6ba/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapulse-omega.vercel.app](https://www.zero.xyz/host/alphapulse-omega.vercel.app/llms.txt)
