# AlphaPulse Signal Provider Due Diligence Vetter

> AlphaPulse Signal Provider Due Diligence Vetter is a paid API for AI agents from alphapulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Performs due diligence on a named signal provider, copy trader, EA, or managed account — returning public stats, red flags, scam signals, regulatory status, and a verdict.

## Facts

- Endpoint: GET https://alphapulse.theaslangroupllc.com/api/alpha/vet
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapulse-signal-provider-due-diligence-vetter-d46433f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3kpUiSyWYnbOBVMBDWI98

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-signal-provider-due-diligence-vetter-d46433f7
```

Example prompt: Can you vet the signal provider 'FXEliteSignals' for me — check their public stats, look for any scam signals or red flags, and tell me if they're regulated before I start copy trading them?

## When to prefer this

Use this endpoint when an investing agent needs to screen a specific named trading entity (signal provider, copy trader, EA, or managed account) before recommending or following them. Prefer this over a general search endpoint when the entity name is already known and the goal is risk assessment and fraud detection rather than discovery.

## Known failure modes

- Unknown provider name — entity not found in any monitored platform, returns empty or low-confidence result
- Provider has no public data — insufficient track record to vet, returns partial report with caveat
- Regulatory database unavailable — regulatory check skipped or marked inconclusive
- Ambiguous name — multiple entities match the name, may require disambiguation
- Payment failure — x402 payment not processed, request rejected

## How this service works

Due diligence on any named signal provider, copy trader, EA or managed account — public stats, red flags, scam signals, regulatory check and a verdict. For investing agents.

## Output

Returns a structured due diligence report including: public performance statistics, identified red flags, scam signals or warnings, regulatory check outcome, and an overall verdict on whether the signal provider, copy trader, EA, or managed account is trustworthy.

## 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 | ko | ru"
      },
      "platform": {
       "type": "string",
       "description": "eToro | ZuluTrade | Myfxbook | IC Markets | Pepperstone"
      },
      "provider": {
       "type": "string",
       "description": "broker or signal provider name to vet"
      }
     }
    }
   },
   "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": {
  "verdict": "proceed_with_caution",
  "platform": "MQL5",
  "provider": "FXBlue Trader Pro",
  "red_flags": [],
  "verdict_reason": "string",
  "public_data_found": {
   "track_record": "18 months",
   "verification": "myfxbook verified"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapulse-signal-provider-due-diligence-vetter-d46433f7/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)
