# SendQuoteNow Quote Share Fetch

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

Fetches a generated quote by ID, returning its status, totals, line items, share links, and payment status.

## Facts

- Endpoint: POST https://sendquotenow.com/v1/x402/quote/share
- 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/sendquotenow-quote-share-fetch-9d708991
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ChpQ94JbSH8IkDaITlICO

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-share-fetch-9d708991 -d '<json body>'
```

Example prompt: Can you pull up the details for quote ID abc-12345 on SendQuoteNow — I want to see its status, the line items, totals, and whether it's been paid yet?

## When to prefer this

Use this endpoint when you need to retrieve the full details of a previously generated quote by its unique ID, including line items, totals, share links, and payment status. Prefer this over alternatives when working within the SendQuoteNow platform and needing structured quote data for display, sharing, or payment verification.

## Known failure modes

- Quote ID not found — returns 404 or error indicating unknown quote
- Invalid or malformed quote ID — returns 400 bad request
- Payment not completed for API access — returns 402 payment required
- Unauthorized access to a quote belonging to another account — returns 403
- Service unavailable — returns 500 or timeout

## 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 returns every shareable surface for a generated quote: hosted page, PDF, QR code and Stripe payment link. Pass the id from /v1/x402/quote/generate.

## Output

Returns the quote's current status (e.g. draft, sent, paid), itemized line items, total amounts, shareable links to the quote, and payment status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Quote id returned by /quote/generate"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "id": "uuid",
   "status": "sent",
   "pdf_url": "https://sendquotenow.com/pub/quotes/.../pdf",
   "expires_at": "2026-08-02T00:00:00Z",
   "hosted_url": "https://sendquotenow.com/quote-view.html?token=...",
   "qr_code_url": "https://sendquotenow.com/pub/quotes/.../qr.png",
   "quote_number": "Q-0042",
   "payment_link_url": "https://buy.stripe.com/...",
   "qr_code_data_uri": "data:image/png;base64,..."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sendquotenow-quote-share-fetch-9d708991/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)
