Getting Prices

Use this endpoint to check the price (in satoshis) that user will need to pay to use services offered by this API.

GET price estimates

Get Inscription Price (in satoshis)

GET https://api.ordinalsbot.com/price

This endpoint will calculate all fees related to the operation and return the total as well as the breakdown.

Query Parameters

NameTypeDescription

size*

Number

Total size of all files to be inscribed in bytes

fee*

Number

Miner fee that will be paid while inscribing the ordinal in sats/byte. (default=2 sats/byte)

count

Number

Number of files to be inscribed (default=1)

rareSats

String

Inscribe on a rare, exotic, early sat.

Options: block9 | block78 | pizza | uncommon | random

(default=random)

check /inventory endpoint for current availability.

direct

Boolean

Estimate fees for a direct inscription order /inscribe endpoint which will be cheaper

(default=false)

additionalFee

Number

Additional fee(in satoshis) to be added to order total and passed to your referral code.

lowPostage

Boolean

Estimate fees for files with minimum postage (padding) 546 sats instead of the standard 10,000 sats.

(default=false)

{
    "chainFee": 41580,
    "serviceFee": 13704,
    "baseFee": 9000,
    "rareSatsFee": 0,
    "additionalFee": 0,
    "postage": 546,
    "amount": 55284,
    "totalFee": 55284
}

Last updated