# AlphaPulse DeFi Vault Discovery

> AlphaPulse DeFi Vault Discovery is a paid API for AI agents from alphapulse.theaslangroupllc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/vaults
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-defi-vault-discovery-4980256d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SXKwIG-wAQTKgYKcWy0oC

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-defi-vault-discovery-4980256d
```

Example prompt: Can you pull up the top DeFi copy-trading vaults right now across Hyperliquid and GMX — I want ones with solid APR, decent TVL, and a low-to-medium risk profile, and make sure the smart contracts have been assessed?

## When to prefer this

Use this endpoint when an agent needs structured, multi-platform DeFi vault discovery with risk scoring and smart-contract due diligence in a single call — particularly when comparing copy-trading vaults across Hyperliquid, GMX, dYdX, and Gains Network rather than querying each protocol natively.

## Known failure modes

- Platform-specific data unavailable — vault data for a particular DEX may be stale or temporarily inaccessible
- No vaults match filter criteria — returns empty result set
- Payment failure — x402 payment of $0.08 USDC not processed, returns 402 status
- Rate limiting — too many requests in short period
- Smart contract assessment data missing for newer or less-audited vaults

## 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

A list of DeFi copy-trading vaults across supported platforms (Hyperliquid, GMX, dYdX, Gains Network) each with TVL, APR, risk profile classification, and smart-contract assessment details, enabling an agent to evaluate and rank on-chain investment opportunities.

## 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-defi-vault-discovery-4980256d/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)
