# Loyal Spark Delete Report

> Loyal Spark Delete Report is a paid API for AI agents from api.loyalspark.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Deletes a specific report from the Loyal Spark onchain loyalty platform on Base L2

## Facts

- Endpoint: POST https://api.loyalspark.online/x402-gateway/mcp-tools/delete_report
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/loyal-spark-delete-report-3a1eff97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_movkMsWXF6KCa15q_agp2

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 loyal-spark-delete-report-3a1eff97 -d '<json body>'
```

Example prompt: Delete report ID 'rpt_abc123' from my Loyal Spark loyalty program on Base L2 — I no longer need that rewards summary report.

## When to prefer this

Use this endpoint when you need to programmatically remove a specific report from the Loyal Spark loyalty platform, especially within an AI agent workflow automating loyalty program management on Base L2. Prefer this over manual dashboard deletion when automating cleanup tasks via MCP or REST.

## Known failure modes

- Report ID not found — returns 404 or error JSON
- Unauthorized access — agent lacks permission to delete the report
- Report already deleted — idempotency conflict or 409 error
- Invalid report ID format — returns 400 bad request
- Payment failure — insufficient USDC balance for $0.01 x402 call

## How this service works

Onchain loyalty protocol on Base L2. Launch B20 rewards, earn and redeem tokens, trade P2P, automate with AI agents via REST and MCP.

## Output

Returns a JSON confirmation indicating whether the report was successfully deleted, including the report ID and updated status or error details if the deletion failed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "toolName",
    "inputSchema"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "mcp"
    },
    "example": {
     "type": "object"
    },
    "toolName": {
     "type": "string"
    },
    "transport": {
     "enum": [
      "streamable-http",
      "sse"
     ],
     "type": "string"
    },
    "description": {
     "type": "string"
    },
    "inputSchema": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loyal-spark-delete-report-3a1eff97/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.loyalspark.online](https://www.zero.xyz/host/api.loyalspark.online/llms.txt)
