# AlphaPulse Vaults — DeFi Copy Trading Vault Discovery

> AlphaPulse Vaults — DeFi Copy Trading Vault Discovery is a paid API for AI agents from alphapulse-omega.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Discovers and ranks DeFi copy trading vaults on Hyperliquid, GMX, dYdX, and Gains Network with TVL, APR, risk profile, and smart contract assessment

## Facts

- Endpoint: GET https://alphapulse-omega.vercel.app/api/alpha/vaults
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-vaults-defi-copy-trading-vault-discovery-c8f81098
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-dm1GjYatArWLFa4W1YBw

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-vaults-defi-copy-trading-vault-discovery-c8f81098
```

Example prompt: Show me the top DeFi copy trading vaults on Hyperliquid and GMX right now — I want ones with strong APR, decent TVL, and a low-to-medium risk profile, and make sure their smart contracts have been assessed.

## When to prefer this

Use this endpoint when a user wants to discover and evaluate DeFi on-chain copy trading vaults specifically on perpetuals and derivatives protocols (Hyperliquid, GMX, dYdX, Gains Network) with TVL, APR, and smart contract risk context. Prefer this over the AlphaPulse copy endpoint (which covers centralized platforms like eToro, ZuluTrade) when the user explicitly wants decentralized, on-chain vault-based copy trading.

## Known failure modes

- No vaults match the specified filter criteria — returns empty result set
- Protocol data temporarily unavailable due to on-chain or indexer downtime
- Payment not processed — 402 response requiring x402 USDC payment before data is returned
- Invalid filter parameters — returns 400 with parameter validation error
- Rate limiting if called too frequently without payment

## How this service works

DeFi copy-trading vault discovery on Hyperliquid, GMX, dYdX and Gains Network — TVL, APR, risk profile and smart-contract assessment. For on-chain investing agents.

## Output

Returns a ranked list of DeFi copy trading vaults across Hyperliquid, GMX, dYdX, and Gains Network, each with TVL, APR, risk profile classification, and a smart contract security assessment to help users evaluate yield and safety before depositing.

## Example request

```json
{
 "lang": "en",
 "category": "hyperliquid",
 "us_accessible": true
}
```

## 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 | zh | ko | ja | de | fr | es"
      },
      "min_tvl": {
       "type": "string"
      },
      "protocol": {
       "type": "string",
       "description": "Hyperliquid | GMX | dYdX | Gains Network | any"
      },
      "strategy": {
       "type": "string",
       "description": "market-making | directional | delta-neutral"
      }
     }
    }
   },
   "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": {
  "top_vaults": [
   {
    "chain": "Hyperliquid L1",
    "protocol": "Hyperliquid",
    "vault_name": "HLP",
    "yield_source": "fees",
    "reported_stats": {
     "tvl": "$420M",
     "reported_apy_or_apr": "8.4%"
    },
    "smart_contract_risk": "string"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-vaults-defi-copy-trading-vault-discovery-c8f81098/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)
