buezli.app API

/2026-07-14/estimates

Estimate

Estimates are customer proposals with line items, pricing, taxes, totals and acceptance status.

Endpoints

GET /2026-07-14/estimates/:id/pdf Download PDF

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/estimates/123/pdf"
GET /2026-07-14/estimates List records

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/estimates?page=1&limit=50"
GET /2026-07-14/estimates/:id Retrieve one record

Example request

curl \
  -H "Authorization: Bearer $BUEZLI_API_TOKEN" \
  "https://api.buezli.app/2026-07-14/estimates/123"

Fields

FieldTypeDescription
idintegerUnique identifier for the resource.
created_atdatetimeTimestamp when the resource was created.
updated_atdatetimeTimestamp when the resource was last updated.
client_idintegerID of the client receiving the estimate.
numberstringEstimate number shown to the customer and unique within the workspace.
statusstringLifecycle status: draft, sent, accepted, declined or closed.
issue_datedateDate shown as the estimate issue date.
subjectstringCustomer-facing subject of the estimate.
notesstringCustomer-facing notes printed on the estimate.
currencystringISO 4217 currency code used for estimate amounts.
localestringLanguage code used for customer-facing estimate labels.
recipient_namestringCustomer name preserved on the estimate.
recipient_addressstringCustomer address preserved on the estimate.
sender_namestringSender name preserved on the estimate.
sender_addressstringSender address preserved on the estimate.
sender_emailstringSender email address preserved on the estimate.
sender_phonestringSender phone number preserved on the estimate.
sender_vat_numberstringSender VAT registration number preserved on the estimate.
discount_ratedecimalPercentage discount applied to the estimate.
tax_ratedecimalDefault tax percentage inherited by line items without an override.
subtotalmoneySum of estimate line items before discounts and taxes.
discountmoneyDiscount amount deducted from the estimate subtotal.
taxmoneySum of tax calculated once for each effective tax-rate bucket.
tax_breakdownarrayTaxable amount and tax amount grouped by exact effective tax rate.
totalmoneyFinal estimate total after discounts and taxes.
sent_atdatetimeTimestamp when the estimate was marked as sent.
accepted_atdatetimeTimestamp when the estimate was accepted.
declined_atdatetimeTimestamp when the estimate was declined.
archived_atdatetimeTimestamp when the estimate was archived, or null when active.
pdfdownloadAvailability and API download path for the generated estimate PDF.

Relationships

client

Returned as an ID. Add expand=client to include the related record.

line_items

Included in every response.