Generates branded, customer-ready quotes and estimates as hosted PDFs in about o
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1450 msmedian answer time
$0.1listed price per call
$0.1price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://sendquotenow.com/v1/x402/quote/generate
| Category | Code and developer |
|---|---|
| Provider host | sendquotenow.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.1 | 1450 ms |
Example input (from the provider)
{
"body": {
"company": {
"name": "Apex Heating & Air",
"phone": "(949) 555-0142"
},
"currency": "USD",
"customer": {
"email": "john@example.com",
"name": "John Doe"
},
"expiration_days": 30,
"services": [
{
"description": "3-ton unit, permits included",
"name": "HVAC installation",
"quantity": 1,
"unit_price": 4500
}
],
"tax_rate": 0.08,
"template": "slate"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"company": {
"description": "Your branding on the quote: name, email, phone, address, terms",
"type": "object"
},
"currency": {
"description": "USD, CAD, EUR, GBP, AUD",
"type": "string"
},
"customer": {
"description": "Recipient of the quote: name, email, phone",
"type": "object"
},
"delivery": {
"description": "{ method: \"email\", to, cc, message }",
"type": "object"
},
"discount": {
"description": "{ type: \"percent\"|\"fixed\", value: n }",
"type": "object"
},
"expiration_days": {
"type": "number"
},
"industry": {
"description": "Styling hint only, e.g. hvac, roofing",
"type": "string"
},
"notes": {
"type": "string"
},
"scope_of_work": {
"type": "string"
},
"services": {
"description": "Line items: name (required), unit_price (required), quantity, description",
"type": "array"
},
"tax_rate": {
"description": "Decimal, e.g. 0.08 for 8%",
"type": "number"
},
"template": {
"description": "standard|slate|emerald|noir|violet",
"type": "string"
}
},
"required": [
"services"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}