# AlphaPulse Regulated Broker Matcher

> AlphaPulse Regulated Broker Matcher is a paid API for AI agents from alphapulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Finds and recommends regulated brokers matched by user region and use case (copy trading, signal following, or EA hosting)

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/broker
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-regulated-broker-matcher-3bf4c9e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HN67wHIelnJNTmfIMJvGQ

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-regulated-broker-matcher-3bf4c9e2
```

Example prompt: Can you find me a regulated broker in the EU that supports copy trading for retail accounts — I want something that also allows signal following via ZuluTrade?

## When to prefer this

Use this endpoint when an agent needs to identify a suitable regulated broker for a specific trading automation use case (copy trading, signal following, EA hosting) filtered by geographic region. Prefer this over general broker search when regulatory compliance and use-case compatibility are the primary criteria.

## Known failure modes

- No brokers found matching the specified region and use case — returns empty result or 404
- Invalid or unsupported region parameter — returns 400 error
- Unsupported use case type provided — returns 400 with valid options
- Service temporarily unavailable — returns 503
- Payment not processed — returns 402 requiring x402 payment of 0.1 USDC

## 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 matched list of regulated brokers filtered by the user's region and use case (copy trading, signal following, or EA hosting), including regulation details, supported platforms, and suitability indicators.

## 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-regulated-broker-matcher-3bf4c9e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapulse.theaslangroupllc.com](https://www.zero.xyz/host/alphapulse.theaslangroupllc.com/llms.txt)
