# HyperWasp Daily Conviction Scan

> HyperWasp Daily Conviction Scan is a paid API for AI agents from api.the402.ai, paid per call via x402, $1.05/call, status down (last checked 2026-09-15).

Purchases and initiates a HyperWasp Daily Conviction Scan job, returning a job ID and thread for async result retrieval

## Facts

- Endpoint: POST https://api.the402.ai/v1/services/svc_0f4ff768eabe4a2f/purchase
- Price: $1.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-the402-ai-e68ef6b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h1pewrbp_xAIv_baYyZoH

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 api-the402-ai-e68ef6b7 -d '<json body>'
```

Example prompt: Run a HyperWasp Daily Conviction Scan on service ID 'svc_0f4ff768eabe4a2f' and give me the job ID so I can check the results.

## When to prefer this

Use this endpoint when you need to initiate a HyperWasp Daily Conviction Scan specifically — an async analysis job that assesses conviction signals for a given target. Prefer this over generic sentiment or analysis endpoints when you need the structured conviction-focused output from the HyperWasp service specifically. Best suited for workflows that can handle async job polling via job_id/thread_id.

## Known failure modes

- Missing or invalid 'id' field returns 400 validation error
- Payment of $1.05 USDC fails or is rejected, blocking job creation
- Service ID not found or not eligible for conviction scan returns 404 or error status
- Job creation succeeds but scan processing fails asynchronously — status field will reflect failure
- Network timeout before job_id is returned

## How this service works

Purchase: HyperWasp - Daily Conviction Scan

## Output

Returns a job_id (unique identifier for the async scan job), a status string indicating current job state, and a thread_id for tracking or retrieving results from the conviction scan.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "status": {
   "type": "string"
  },
  "thread_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-the402-ai-e68ef6b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.the402.ai](https://www.zero.xyz/host/api.the402.ai/llms.txt)
