# AlphaPulse Managed Account Discovery (PAMM/MAM/DARWIN)

> AlphaPulse Managed Account Discovery (PAMM/MAM/DARWIN) 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-14).

Discovers and analyzes PAMM, MAM, and DARWIN managed-account strategies including regulation checks, fee structures, and performance analysis for investing agents.

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/managed
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-managed-account-discovery-pamm-mam-darwin-204e128f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mKJuhVckRsNxElgynb5h1

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-pamm-mam-darwin-204e128f
```

Example prompt: Find me regulated PAMM and DARWIN managed-account strategies with less than 20% max drawdown, annual returns above 15%, and a performance fee under 30% — I want options available to EU investors.

## When to prefer this

Use this endpoint when an investing agent needs to discover and vet PAMM, MAM, or DARWIN managed-account programs specifically — covering regulation compliance, fee transparency, and verified performance data. Prefer over generic copy-trading endpoints when the user wants professionally managed pooled accounts rather than social copy trading.

## Known failure modes

- No results matching the specified regulatory region or fee constraints
- Invalid strategy type parameter returns 400 error
- Stale data if performance stats have not been recently updated
- Rate limiting or payment failure returns 402 if USDC payment is not processed
- Provider database unavailable returns 503

## 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 strategies with their regulatory status, fee structures (management fee, performance fee, minimum deposit), and performance analytics (returns, drawdown, Sharpe ratio, 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-pamm-mam-darwin-204e128f/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)
