# Loyal Spark Reward Status Workflow

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

Checks the current status of an onchain loyalty reward workflow for a recipient on the Base Network via the Loyal Spark platform.

## Facts

- Endpoint: GET https://api.loyalspark.online/x402-gateway/recipient-api/workflow/reward-status
- Price: $0.001/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-reward-status-workflow-17ef969c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A6o7VCQslJujWmCIVwrFq

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-reward-status-workflow-17ef969c
```

Example prompt: Can you check the current status of the reward workflow for my customer on Loyal Spark — I need to know if their onchain loyalty token has been issued and confirmed on Base Network.

## When to prefer this

Use this endpoint when you need to check the status of a specific loyalty reward workflow for a recipient on the Loyal Spark platform running on Base Network. Prefer this over general blockchain explorers when you want structured, human-readable reward status rather than raw transaction data, and when you are already integrated with the Loyal Spark ecosystem.

## Known failure modes

- Missing required query parameters returns 400 or validation error
- Invalid recipient identifier returns 404 or empty result
- Payment header missing or insufficient USDC returns 402 Payment Required
- Onchain data temporarily unavailable returns 503 or timeout
- Workflow ID not found returns empty status or error object

## How this service works

Onchain loyalty platform on Base Network. Businesses launch branded rewards in minutes, customers earn real value with every purchase, and AI agents automate the rest via REST and MCP. Free plan mints up to 1,000 tokens per month; every call is scoped by row-level security to the wallet behind the API key. 16 skill guides at loyalspark.online/.well-known/skills/index.md.

## Output

Returns a JSON object describing the current state of the reward workflow for the specified recipient, including whether the reward is pending, confirmed, or failed on the Base Network blockchain.

## 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"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  },
  "inputSchema": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema"
 },
 "description": "JSON from Loyal Spark agent-api or recipient-api. See OpenAPI for response shape."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/loyal-spark-reward-status-workflow-17ef969c/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)
