# AlphaPulse Managed Account Discovery

> AlphaPulse Managed Account Discovery 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).

Discovers and analyzes PAMM, MAM, and DARWIN managed account offerings with regulation checks, fee structures, and performance analysis

## Facts

- Endpoint: GET https://alphapulse-omega.vercel.app/api/alpha/managed
- 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-managed-account-discovery-fe792aab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MRQHECv3z1zNIFOp5RUtA

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-managed-account-discovery-fe792aab
```

Example prompt: Find me regulated PAMM and DARWIN managed accounts with a performance history of at least 12 months, low drawdown, and management fees under 20% — include the regulation check and full fee breakdown for each.

## When to prefer this

Use this endpoint when a user specifically wants to evaluate PAMM, MAM, or DARWIN managed account programs (not copy traders or signal providers) and needs regulation verification and fee structure details alongside performance data. Prefer over the general AlphaPulse discover endpoint when the user has explicitly chosen a managed account model over self-directed copy trading.

## Known failure modes

- No managed accounts found matching specified criteria — returns empty result set
- Invalid account type parameter — returns 400 with supported types (PAMM, MAM, DARWIN)
- Regulation data unavailable for requested jurisdiction — partial results returned
- Payment of 0.1 USDC not received — returns 402 Payment Required
- External data source unavailable — returns 503 with retry guidance

## How this service works

PAMM, MAM and DARWIN managed-account discovery — regulation checks, fee structures and performance analysis. For investing agents allocating to managed strategies.

## Output

A list of PAMM, MAM, and DARWIN managed account offerings with regulation status, fee structures (management/performance fees), and performance analytics including returns, drawdown, and track record length

## 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": "global | EU | US | APAC | offshore"
      },
      "instrument": {
       "type": "string",
       "description": "forex | crypto | stocks | multi-asset"
      },
      "max_drawdown": {
       "type": "string"
      },
      "min_investment": {
       "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": {
  "managed_options": [
   {
    "name": "Global Macro DARWIN",
    "broker_id": "darwinex",
    "structure": "DARWIN",
    "regulation": "FCA",
    "fee_structure": "2/20",
    "reported_stats": {
     "reported_return_pct": "22.4%",
     "reported_max_drawdown_pct": "11.2%"
    }
   }
  ],
  "questions_to_ask": [
   "Verify regulation",
   "Request audited statements"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-managed-account-discovery-fe792aab/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)
