# DeltaSignal Alpha Opportunities Audit

> DeltaSignal Alpha Opportunities Audit is a paid API for AI agents from api.aitrailblazer.net, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a ranked audit of alpha opportunities across issuer types, including rank-delta summaries and issuer type breakdowns for a given source date.

## Facts

- Endpoint: GET https://api.aitrailblazer.net/v1/alpha-opportunities/audit
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deltasignal-alpha-opportunities-audit-27836523
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_50NwVj7JfYUBVsxBRYMQ0

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 deltasignal-alpha-opportunities-audit-27836523
```

Example prompt: Pull me the DeltaSignal alpha opportunities audit for source date 2026-05-13, filtered to operating companies only, and include the row-level details — I want to see the rank delta summary and issuer type breakdown.

## When to prefer this

Use this endpoint when you need a high-level audit of alpha opportunity rankings across issuer types — particularly when you want to identify which issuers experienced the largest rank shifts or demotions on a given date. Prefer this over individual issuer signal endpoints when you need a population-level summary rather than a single-issuer deep dive.

## Known failure modes

- Invalid issuer_type enum value returns a validation error
- source_date in wrong format or future date may return empty or error response
- limit parameter set too high may return truncated results
- Missing required input object causes schema validation failure
- Service unavailable due to upstream data pipeline delays

## How this service works

Explain alpha board issuer-type, identity, quality, and board-rank gates.

## Output

Returns a JSON object containing the source_date, default_filter applied, a rank_delta_summary with max_rank_delta and rows_with_demotion counts, and an issuer_type_summary breaking down counts by operating_company, etf_trust, fund_vehicle, and foreign_issuer.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer"
      },
      "issuer_type": {
       "enum": [
        "operating_company",
        "etf_trust",
        "fund_vehicle",
        "foreign_issuer",
        "unresolved_identifier",
        "all"
       ],
       "type": "string"
      },
      "source_date": {
       "type": "string"
      },
      "include_rows": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "source_date": "2026-05-13",
  "default_filter": {
   "issuer_type": "operating_company"
  },
  "rank_delta_summary": {
   "max_rank_delta": 42,
   "rows_with_demotion": 55
  },
  "issuer_type_summary": {
   "etf_trust": 16,
   "fund_vehicle": 6,
   "foreign_issuer": 11,
   "operating_company": 182
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/deltasignal-alpha-opportunities-audit-27836523/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitrailblazer.net](https://www.zero.xyz/host/api.aitrailblazer.net/llms.txt)
