# AlphaPulse Alpha Discover

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

Discovers and ranks signal providers, copy traders, expert advisors, managed accounts, and DeFi vaults across platforms based on user-defined parameters

## Facts

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

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-alpha-discover-f2dd1e3f
```

Example prompt: Show me the top copy traders and signal providers ranked by lowest drawdown and highest profit factor — include DeFi vaults too if there are any worth considering.

## When to prefer this

Use this endpoint when you need cross-platform discovery and ranking of trading signal providers, copy traders, EAs, managed accounts, or DeFi vaults in a single call — especially when user wants to compare options across platforms with custom ranking criteria rather than browsing a single provider's marketplace.

## Known failure modes

- Invalid ranking parameters return a 400 error
- No providers match the specified filters returns an empty result set
- Payment not processed returns a 402 Payment Required
- Rate limiting may return a 429 Too Many Requests
- Service unavailable returns a 503

## How this service works

Cross-platform discovery of signal providers, copy traders, EAs, managed accounts and DeFi vaults — ranked to your risk, return and budget parameters. For investing agents.

## Output

A ranked list of trading signal providers, copy traders, expert advisors, managed accounts, and/or DeFi vaults scored and ordered according to the user's specified ranking parameters, with performance metrics and cross-platform coverage.

## 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"
      },
      "region": {
       "type": "string",
       "description": "global | EU | US | APAC | MENA"
      },
      "instrument": {
       "type": "string",
       "description": "forex | crypto | stocks | futures"
      },
      "min_return": {
       "type": "string"
      },
      "max_drawdown": {
       "type": "string"
      },
      "min_track_record": {
       "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": {
  "providers": [
   {
    "name": "Alpha FX Fund",
    "type": "managed",
    "platform": "Darwinex",
    "broker_id": "darwinex",
    "reported_stats": {
     "reported_return": "28.4%",
     "reported_max_drawdown": "12.1%"
    }
   }
  ],
  "query_summary": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-alpha-discover-f2dd1e3f/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)
