Partner APIs
Fiscal print data
Retrieve the printable fiscal data for an order — emitter, store, buyer, document references, and country-specific fields. Use it to render a receipt or invoice from the integration side.
GET
Returns the consolidated fiscal context for a specific order — the data your point-of-sale or backoffice would render on a printed/digital receipt. It exposes:
- Emitter context — legal entity, gov ID, store info, state registration
- Country-specific fiscal references — chave de acesso, CUFE, clave de acceso, CAE, folio, etc., per country
- Buyer context — recipient, with anonymous/final-consumer flagging
- Order summary — code, status, business day
Authentication
Your Fire API key with the
orders:read scope. Vendor-scoped: the API key must belong to the same vendor that owns the store/order.Path parameters
Fire’s internal order UUID. Matches
data.orderId in the order.completed event for this order.Query parameters
Vendor identifier. Used as an ownership guard — Fire returns
404 if the order does not belong to this vendor under your API key’s account.Response
Common fiscal references for the document, regardless of country.
Country-specific document references. Shape varies by
fiscal.countryCode. Examples:- BR:
chaveAcesso(44 digits),serie,serialNumber - CO:
cufe,prefijo,numeroDian - EC:
claveAcceso(49 digits),numeroAutorizacion,ambiente - CL:
folio,ted,tipoDte,trackId - AR:
cae,fechaVtoCae,puntoVenta,numeroComprobante,tipoComprobante - VE:
numeroControl,numeroFactura,rifEmisor
Legal entity emitting the document.
Store-level info for the printed header.
Recipient of the document.
Minimal order context for cross-reference.
Common patterns
- Render-time fetch. Call this endpoint at print/render time and persist the response if you need durable artifacts —
pdfUrlandxmlUrlmay be signed URLs that expire. - Final-consumer flag. Always check
buyer.isFinalConsumerbefore rendering buyer details. For anonymous consumers in BR,govIdNumberis"00000000000"and other buyer fields arenull. - Country-specific UI. Use
fiscal.countryCodeto dispatch to the right rendering template — DANFCE for BR NFC-e, DIAN-style for CO, SRI for EC, etc.
Related
order.completed event
The full order snapshot — much richer than fiscal-print, used for non-print integrations.
order.invoiced event
Brazil only — fires when SEFAZ authorizes; carries the same fiscal references.
Fiscal callback
The inbound endpoint your fiscal provider uses to update fiscal state.

