# Loyal Spark - List My Gift Certificates

> Loyal Spark - List My Gift Certificates 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-15).

Retrieves the list of gift certificates owned by or available to the authenticated recipient on the Loyal Spark onchain loyalty platform.

## Facts

- Endpoint: POST https://api.loyalspark.online/x402-gateway/recipient-mcp-tools/list_my_gift_certificates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/loyal-spark-list-my-gift-certificates-6268aed2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ji6hyECW-pdlW9yUqGyKN

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-list-my-gift-certificates-6268aed2 -d '<json body>'
```

Example prompt: Can you show me all the gift certificates I have in my Loyal Spark loyalty account right now?

## When to prefer this

Use this endpoint when an AI agent or user needs to enumerate all gift certificates held by a specific recipient within the Loyal Spark loyalty ecosystem on Base L2, particularly when building redemption flows, displaying wallet contents, or auditing available rewards.

## Known failure modes

- Unauthorized: missing or invalid authentication credentials returns 401
- No gift certificates found returns an empty array
- Payment failure: USDC x402 payment not completed returns 402
- Rate limiting or quota exceeded returns 429
- Internal server error if the onchain data layer is unreachable returns 500

## 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

A JSON array of gift certificates associated with the recipient, including certificate IDs, face values, issuing merchants, redemption status, and expiry information stored on the Base L2 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",
    "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-list-my-gift-certificates-6268aed2/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)
