# SendQuoteNow Quote Creator

> SendQuoteNow Quote Creator 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).

Creates and sends a professional quote/invoice/estimate with line items, totals, tax, PDF, QR code, and Stripe payment link

## Facts

- Endpoint: POST https://sendquotenow.com/v1/x402/quotes
- 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-creator-4bbd3676
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dJUwh_HHg62X4OX1eZNm6

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-creator-4bbd3676 -d '<json body>'
```

Example prompt: Create and send a quote to my client John Smith at john@example.com for electrical panel upgrade work — 3 labor hours at $150 each and materials for $1,800, with 8% tax, expiring in 30 days.

## When to prefer this

Choose this endpoint when an AI agent needs to programmatically create and immediately deliver a client-ready quote or invoice for a service business — especially when you need a bundled output including PDF, hosted view link, QR code, and Stripe payment link in a single call. Prefer this over generic invoicing APIs when serving contractors, electricians, plumbers, HVAC techs, or freelancers who need branded, professional-looking estimates sent instantly with built-in payment collection.

## Known failure modes

- Missing required line items or client contact info returns a 400 validation error
- Invalid or malformed email address for recipient causes delivery failure
- Expired or invalid x402 USDC payment token returns a 402 payment required error
- Stripe payment link generation failure if Stripe integration is misconfigured
- Tax rate out of accepted range returns a validation error
- Network timeout if PDF or QR code generation takes too long

## 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 a JSON object containing a unique quote UUID, sequential quote number (e.g. Q-0042), status (sent), subtotal, tax amount, and grand total in USD, along with a hosted URL for the client-facing quote page, a downloadable PDF URL, a QR code image URL, a Stripe payment link for the client to pay, and an expiration timestamp.

## 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-creator-4bbd3676/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)
