# AlphaPulse Broker Finder

> AlphaPulse Broker Finder 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).

Finds regulated brokers suited for copy trading, signal following, or EA hosting filtered by region and use case

## Facts

- Endpoint: GET https://alphapulse-omega.vercel.app/api/alpha/broker
- 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-broker-finder-50d6790c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oCehLObKe3vEYhkMXN1mv

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-broker-finder-50d6790c
```

Example prompt: Can you find me a regulated broker that supports copy trading and signal following in the UK? I want something compliant and suitable for hosting Expert Advisors on MT4.

## When to prefer this

Use this endpoint when an agent needs to recommend a specific regulated broker based on a user's geographic region and intended trading activity (copy trading, signal following, or EA hosting), rather than comparing signal providers or evaluating existing traders.

## Known failure modes

- No brokers found matching the specified region and use case combination
- Unsupported region or use case parameter returns empty or error response
- Stale broker data if underlying database is not recently updated
- Payment not processed (x402 payment required before response is returned)
- Ambiguous use case input may return broad or irrelevant results

## How this service works

Find the right regulated broker for copy trading, signal following or EA hosting, matched by region and use case. For trading and investing agents.

## Output

Returns a list of regulated brokers matched to the specified region and use case, including details on regulation, supported trading platforms, copy trading or EA hosting capabilities, and regional availability.

## 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"
      },
      "region": {
       "type": "string",
       "description": "US | EU | UK | AU | SG | global"
      },
      "use_case": {
       "type": "string",
       "description": "beginner | active-trader | algo | copy-trading | professional"
      },
      "instrument": {
       "type": "string",
       "description": "forex | stocks | crypto | futures | options | cfds"
      }
     }
    }
   },
   "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": {
  "region": "global",
  "recommended_brokers": [
   {
    "name": "IC Markets",
    "best_for": "copy trading",
    "broker_id": "ic_markets",
    "regulation": "ASIC/CySEC",
    "min_deposit": "$200"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-broker-finder-50d6790c/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)
