Getting Prices (Legacy)

Legacy endpoint kept for backwards compatibility. Results may or may not be correct. Always use POST /price for reliable results.

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.

type

Enum

The order type

"bulk" for Create an Inscription Order "direct" for Create a Direct Inscription Order "rune-etch" for Etch "rune-mint" for Mint

batchMode

String

"separate-outputs" or "shared-output" if requesting price calculation for a batch inscription.

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