Skip to content

Pricing & Credits

The ATS Widget is a B2B product. Usage requires an active subscription and incurs per-registration fees.

Access to the ATS Widget requires an active subscription with the Allfeat team. The subscription covers widget access, API usage, and support. Contact the Allfeat team for subscription details and pricing.

Every blockchain operation has three fee components:

FeeDescription
Network feeThe blockchain transaction cost. Estimated via a dry-run simulation before the actual submission.
DepositOn-chain storage deposit required by the Allfeat blockchain. Includes a base deposit (for new works) or a version deposit (for version updates).
Service feeAllfeat platform fee, calculated as a percentage (basis points) of the transaction cost.

The total price displayed in the widget is the sum of all three:

total_price = network_fee + deposit + service_fee

The pricing is calculated during the prepare phase of the registration flow:

  1. The user fills the form and submits
  2. The widget calls POST /v1/works/prepare (or /versions/prepare)
  3. The API performs a dry-run simulation of the blockchain transaction
  4. The response includes the exact pricing breakdown:
    • network_fee_credits — estimated blockchain transaction cost
    • total_deposit_credits — on-chain storage deposit
    • service_fee_credits — platform service fee
    • total_price_credits — sum of all fees
  5. The widget proceeds to confirmation and deducts credits automatically

Monitor your credit balance in the Allfeat Dashboard.

If your organization’s credit balance is too low:

  • Session creation (POST /v1/sessions) will fail — preventing any widget operation
  • Your backend will receive an error response when trying to obtain a token

Handle this gracefully in your backend:

backend/routes/ats-token.ts
const response = await fetch('https://ats.api.allfeat.org/v1/sessions', {
method: 'POST',
headers: { 'Content-Type': 'application/json', 'Origin': 'https://yoursite.com' // domain where the widget is embedded },
body: JSON.stringify({
secret_key: process.env.ALLFEAT_SECRET_KEY,
action_type: 'register',
allowed_network: 'testnet',
}),
});
if (!response.ok) {
const error = await response.json();
// Handle insufficient credits or other errors
return res.status(response.status).json({
error: 'Unable to start registration. Please try again later.',
});
}

Credits can be purchased and managed through the Allfeat Dashboard.

OperationFees Included
Register (new work)Network fee + base deposit + version deposit + service fee
Update (new version)Network fee + version deposit + service fee
Access (read-only)No fees — access mode is free