# SendQuoteNow Quote Generator

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

Generates a new quote and returns its status, totals, line items, links, and payment status.

## Facts

- Endpoint: POST https://sendquotenow.com/v1/x402/quote/generate
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sendquotenow-quote-generator-bf0b46f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_be0B5NF1csOOpFJD3wDWO

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-generator-bf0b46f4 -d '<json body>'
```

Example prompt: Generate a quote for my customer at Acme Corp for 5 units of Website Design at $500 each and 3 units of Hosting Setup at $150 each, and show me the totals, line items, and payment status.

## When to prefer this

Use this endpoint when you need to programmatically generate a customer-facing quote with itemized line items, totals, and payment tracking via the x402 micropayment protocol. Prefer it over manual quote creation when automating sales workflows or needing machine-readable quote data including payment status.

## Known failure modes

- Missing or invalid line item data returns a 400 error
- Payment not received or quote generation fails returns an error status
- Invalid pricing inputs cause quote generation to fail
- Service unavailable returns a 5xx error
- Insufficient USDC payment (requires $0.01) results in 402 Payment Required

## 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 (the flagship): POST line items, get back the quote number, totals, a hosted page the customer can approve or decline, a PDF URL, a QR code, a Stripe payment link and an expiration date.

## Output

Returns the generated quote's unique ID, current status, line item breakdown, subtotals and grand total, shareable links for the quote, and payment status information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "notes": {
   "type": "string"
  },
  "company": {
   "type": "object",
   "description": "Your branding on the quote: name, email, phone, address, terms"
  },
  "currency": {
   "type": "string",
   "description": "USD, CAD, EUR, GBP, AUD"
  },
  "customer": {
   "type": "object",
   "description": "Recipient of the quote: name, email, phone"
  },
  "delivery": {
   "type": "object",
   "description": "{ method: \"email\", to, cc, message }"
  },
  "discount": {
   "type": "object",
   "description": "{ type: \"percent\"|\"fixed\", value: n }"
  },
  "industry": {
   "type": "string",
   "description": "Styling hint only, e.g. hvac, roofing"
  },
  "services": {
   "type": "array",
   "description": "Line items: name (required), unit_price (required), quantity, description"
  },
  "tax_rate": {
   "type": "number",
   "description": "Decimal, e.g. 0.08 for 8%"
  },
  "template": {
   "type": "string",
   "description": "standard|slate|emerald|noir|violet"
  },
  "scope_of_work": {
   "type": "string"
  },
  "expiration_days": {
   "type": "number"
  }
 }
}
```

## 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-generator-bf0b46f4/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)
