0Bit Documentation

Volatility exposure review

Keep volatility, rate, and conversion-risk language accurate for 0Base checkout.

Volatility exposure review defines how the merchant handles rate movement between checkout display, customer payment, conversion/processing, and settlement. Even stablecoin-oriented checkout needs explicit rules for expiry, amount precision, processing delays, and what is promised to the customer.

0Base availability is account-gated. Build against capabilities, merchant status, environment mode, and settlement settings instead of assuming that every payment method, asset, network, cadence, or refund path is enabled for every merchant.

0Base product docs and API details

These pages are public product guidance for merchant and platform developers. 0Base endpoint-level API pages are not published for partners yet; use this product documentation to understand the workflow, records, and launch boundaries.

End-to-end picture

This flow is intentionally shown as product infrastructure: Amount set -> Terms displayed -> Payment window -> Market moves -> Status resolves -> Finance records. The merchant application can make the customer experience simple, but the backend should keep each step visible enough for retries, support, and finance closeout.

Production contract

BoundaryWhat to buildWhy it matters
Display precisionUse decimal strings and returned fields; avoid client-side rounding games.Payment disputes often start with cents and decimals.
Expiry controlKeep terms time-bound.Limits stale rate exposure.
Status controlProcessing is not final success.Prevents shipping before conversion/settlement confidence.
Settlement choiceUnderstand whether settlement currency changes exposure.Finance needs asset clarity.
Copy controlExplain pending and expired states without promising impossible certainty.Customer trust depends on honest state.

Status and state handling

StateWhat it meansDeveloper action
Open windowCustomer may pay under current terms.Show expiry.
Stale windowTerms expired.Require a fresh object.
Processing exposurePayment is resolving.Keep fulfillment pending.
ClosedTerminal success/failure and ledger/report evidence.Close or recover.

Status handling should be strict even when the customer UI is friendly. Store raw 0Base statuses, map them to customer-safe labels at the edge, and keep the merchant order state separate from the payment object state. That separation lets you change customer copy without corrupting reconciliation.

Example implementation record

This is an application-side record shape for volatility exposure review. Keep exact request and response fields aligned with your enabled account contract when 0Base API access is released for your partner account; the point of this record is to keep product, support, and finance joined in your system.

{
  "merchant_order_id": "ord_vol_001",
  "amount": "100.00",
  "currency": "EUR",
  "crypto_currency": "USDT",
  "terms_expires_at": "2026-06-28T21:00:00Z",
  "quoted_rate": "1.08450000",
  "exposure_policy": "fresh_checkout_after_expiry"
}

Operational scenario

Before 0Base, many merchants handled crypto price movement by manually updating payment instructions or accepting ambiguous over/underpayment risk. A 0Base integration should turn that into explicit object expiry, amount evidence, and settlement records.

In practice, production 0Base integrations make the happy path fast while keeping exceptions predictable: retries return the same object, delayed notifications can be repaired, expired sessions do not become mystery payments, and finance exports can be traced back to the original merchant order.

Before and after

Before 0BaseWith 0Base
Price changes were handled manually.Expiry and fresh payment objects define the boundary.
Customer saw one amount and finance used another.Displayed terms and ledger records are joined.
Stablecoin meant no operational exposure.Stablecoin checkout still needs network, timing, and status rules.
Support guessed whether a late payment was acceptable.Late payment policy is tied to object expiry and status.

Evidence to keep

EvidenceWhat to store
Terms evidenceDisplayed amount/rate/crypto amount, expiry, page version.
Payment evidenceDetected amount, crypto amount, payment hash where available.
Policy evidenceLate payment, underpayment, overpayment, and cancellation policy.
Settlement evidenceLedger asset, amount, status, payout reference.
Customer evidenceCopy shown for pending, expired, failed, and success states.

This evidence is what makes the integration supportable at institutional scale. A developer should not need private operational knowledge to answer basic questions such as what the customer saw, which object owns the state, which event announced the change, and which ledger or report row closed the money movement.

Failure modes and recovery

Failure modeRecovery
Market moves before paymentTerms remain valid only until expiry; otherwise create fresh object.
Amount is rounded inconsistentlyUse API decimal strings and store original values.
Customer pays after expiryRoute to late-payment recovery, not automatic fulfillment.
Settlement asset exposes different riskDocument settings and report by asset.

Recovery should be idempotent and explainable. When the system is uncertain, preserve the current raw status, read the latest object state, attach a support reference, and avoid changing fulfillment or finance state until a trusted terminal condition is present.

API adjacency

API areaUse it for
POST /checkoutsCreate time-bound checkout.
POST /payment_intentsCreate exact amount intent.
GET /payment_intents/{intentId}Read rate/amount/status fields.
GET /reports/settlementReview settlement output.

For endpoint-level implementation, use the API reference as the source of truth for fields, enums, authentication, idempotency behavior, pagination, and response examples.

Why this matters for merchants and customers

Even stablecoin-oriented checkout has timing, precision, and settlement exposure. Explicit exposure rules help merchants avoid overpromising fixed outcomes when terms expire or processing takes time.

At scale, the value of 0Base is not only that a payment can be created. The value is that the payment can be explained later: what the customer saw, which account capabilities allowed it, which backend state changed, which notification delivered it, and which ledger or report row closed it.

Worked API path

The example below shows the implementation shape for this page. Use merchant-specific capabilities, account settings, and API responses in production; the ids and values here are illustrative.

curl -X POST https://base-api-sandbox.0bit.app/v1/payment_intents \
  -H "Authorization: Bearer $OBIT_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: ord_100045:base:v1" \
  -d '
{
    "amount": "89.00",
    "currency": "EUR",
    "cryptoCurrency": "USDT",
    "clientReference": "ord_100045",
    "settlementCurrency": "USDC",
    "settlementRail": "onchain"
}'

Example response shape:

{
  "intentId": "pi_test_456",
  "status": "requires_payment",
  "amount": "89.00",
  "currency": "EUR",
  "cryptoCurrency": "USDT",
  "clientReference": "ord_100045",
  "settlementCurrency": "USDC",
  "settlementRail": "onchain"
}

Implementation checkpoints:

  • Store your merchant reference before calling 0Base.
  • Attach the returned object id to the same business record.
  • Record the request id, idempotency key, raw status, and environment.
  • Use webhook and report reads to repair delayed or missed state changes.

Data join map

This join map is the reason 0Base is infrastructure rather than a payment button. A merchant can change checkout UX, support tooling, or finance exports without losing the chain from customer action to backend state and settlement evidence.

Operator runbook

SignalCheck firstAction
Customer reports payment not updatingLook up merchant order id, 0Base object id, raw status, and latest webhook delivery.Read current object state before changing fulfillment.
Webhook delivery failedCheck delivery id, event id, attempts, last error, and handler logs.Fix the handler, replay once, and dedupe by event id.
Finance cannot match a rowCompare client reference, intent id, settlement id, report period, and export row.Move the item to reconciliation queue instead of closing by amount/date.
Customer paid but order is still pendingCheck raw intent status, deposit-address status, confirmations, and latest report row.Keep fulfillment pending until terminal success or documented manual review.

The runbook should be available to support and finance teams before launch. A developer integration is not complete if only engineering can explain the state of a customer payment.

Developer checklist

  • Define what terms are fixed and for how long.
  • Use backend-created amounts only.
  • Show expiry clearly.
  • Store displayed terms snapshots.
  • Separate payment success from settlement paid.
  • Review volatility copy before launch.

On this page