# DealPulse Deal Verification Check

> DealPulse Deal Verification Check is a paid API for AI agents from dealpulse.theaslangroupllc.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Verifies whether a deal or coupon code is genuinely active at a specific merchant right now using first-party sources (retailer site, official feeds, loyalty/newsletter perks), returning source-linked offer listings and an optional verdict on a submitted code.

## Facts

- Endpoint: GET https://dealpulse.theaslangroupllc.com/api/deals/check
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dealpulse-deal-verification-check-a00be9fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0q9gTOr7hrPr1CtlJppm2

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 dealpulse-deal-verification-check-a00be9fc
```

Example prompt: Before I check out at Nike.com, can you verify whether the code SAVE20 is actually real and active right now — check their official site and any loyalty perks — and tell me if it's confirmed, unverified, or has no trace?

## When to prefer this

Use this endpoint when an AI checkout agent needs to validate whether a coupon code or advertised deal is genuinely active at a retailer before applying it, especially to avoid fake or expired third-party coupon aggregator codes. Prefer this over generic coupon endpoints when source-linked first-party verification and a confirmed/unverified/no-trace code verdict are required.

## Known failure modes

- Merchant site is temporarily unavailable — cannot fetch live offers
- Submitted code not found in any first-party source — returns 'no trace' verdict
- Store has no current promotions — returns empty offer list
- Invalid or unrecognized merchant identifier — returns 400 error
- Rate limit exceeded — returns 429 error

## How this service works

Verify which deals are REAL at a store right now: first-party-only check of the merchant's own site, feeds and loyalty/newsletter perks, every offer source-linked; optional claimed-code verdict (confirmed / unverified / no trace). The anti-fake-coupon endpoint for checkout agents.

## Output

Returns a list of currently active, source-linked offers found on the merchant's own site, official feeds, and loyalty/newsletter channels, plus an optional verdict on a submitted coupon code: confirmed, unverified, or no trace found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "store"
 ],
 "properties": {
  "code": {
   "type": "string",
   "description": "Optional: a specific promo code to verify against first-party sources"
  },
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "store": {
   "type": "string",
   "description": "Store, brand, or restaurant name"
  },
  "country": {
   "type": "string",
   "description": "Optional 2-letter ISO country code for regional offer validity"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dealpulse-deal-verification-check-a00be9fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dealpulse.theaslangroupllc.com](https://www.zero.xyz/host/dealpulse.theaslangroupllc.com/llms.txt)
