# SendQuoteNow Quote Email Delivery

> SendQuoteNow Quote Email Delivery is a paid API for AI agents from sendquotenow.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Sends a generated quote via email, returning status, totals, line items, links, and payment status for the quote.

## Facts

- Endpoint: POST https://sendquotenow.com/v1/x402/quote/email
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sendquotenow-quote-email-delivery-5251dec6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_J61C1zi-SwQlRXXOGE4ib

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 sendquotenow-quote-email-delivery-5251dec6 -d '<json body>'
```

Example prompt: Can you email quote #QT-4821 to my client at john.smith@acmecorp.com so they can review the line items and pay?

## When to prefer this

Use this endpoint when you need to both retrieve quote details (status, totals, line items) AND deliver the quote to a recipient via email in a single operation. Prefer this over a plain quote-fetch endpoint when the goal is to notify or share the quote with an end customer.

## Known failure modes

- Invalid or non-existent quote ID returns an error response
- Invalid email address format causes delivery failure
- Quote already paid or expired may return a conflict or stale-state error
- Network or email delivery failure results in a 500-level error
- Missing required fields (quote id or email) returns a 400 validation error

## How this service works

Generates branded, customer-ready quotes and estimates as hosted PDFs in about one second — line items, tax, discounts, a hosted approval page, a QR code and a Stripe payment link. Pay-per-call with x402 in USDC on Base; no account or API key. THIS ENDPOINT emails an already-generated quote to the customer with an optional message. Pass the id from /v1/x402/quote/generate.

## Output

Returns the quote's current status, line items breakdown, totals, relevant links (e.g. view/pay link), and payment status for the dispatched quote.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cc": {
   "type": "string"
  },
  "id": {
   "type": "string",
   "description": "Quote id returned by /quote/generate"
  },
  "to": {
   "type": "string",
   "description": "Recipient email (defaults to customer.email from creation)"
  },
  "message": {
   "type": "string",
   "description": "Personal message shown in the email"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "uuid",
   "total": 4860,
   "status": "sent",
   "pdf_url": "https://sendquotenow.com/pub/quotes/.../pdf",
   "currency": "USD",
   "subtotal": 4500,
   "expires_at": "2026-08-02T00:00:00Z",
   "hosted_url": "https://sendquotenow.com/quote-view.html?token=...",
   "tax_amount": 360,
   "qr_code_url": "https://sendquotenow.com/pub/quotes/.../qr.png",
   "quote_number": "Q-0042",
   "payment_link_url": "https://buy.stripe.com/..."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sendquotenow-quote-email-delivery-5251dec6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sendquotenow.com](https://www.zero.xyz/host/sendquotenow.com/llms.txt)
