Blockfrost Cardano API
v1.0.0https://ada-blockfrost.nownodes.ioNOWNodes Cardano blockfrost endpoint.Blockfrost API for the Cardano blockchain. Provides endpoints for querying health status, accounts, addresses, assets, blocks, epochs, genesis configuration, metadata, network eras, stake pools, scripts, transactions, and utility operations. Authentication is performed via an API key passed in the api-key header.
Authentication
api-keyAuthapiKeyNOWNodes API key passed in the api-key header.
API Key: api-key in header
Blockfrost
Health
Health operations.
API Health Status
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the current health status of the Blockfrost backend. When the service is fully operational and synchronised with the Cardano blockchain the is_healthy flag is true.
Response
HTTP 200 response for getHealthStatus.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
API Clock Synchronisation
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the current UNIX timestamp (in milliseconds) reported by the Blockfrost server. Useful for detecting clock drift between the client system and the Blockfrost infrastructure.
Response
HTTP 200 response for getHealthClock.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Accounts
Accounts operations.
Account information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns on-chain information about a specific Cardano stake account identified by its Bech32 stake address. Includes delegation status, controlled balance, reward totals, and MIR sums.
Parameters
stake_addressstringrequiredpathBech32-encoded stake address starting with 'stake1' prefix. This is the staking credential associated with a Cardano wallet
addressstringrequiredpathCardano payment address in Bech32 format.
Response
HTTP 200 response for getAccount.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account reward history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all staking rewards received by the specified stake address, broken down by epoch.
Parameters
addressstringrequiredpathBech32-encoded stake address of the account whose reward history is being queried.
Response
HTTP 200 response for getAccountRewards.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account registration history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Retrieves the complete history of registration and deregistration events for a specific Cardano stake account, including transaction details and timestamps
Parameters
stake_addressstringrequiredpathThe Bech32-encoded Cardano stake address (starts with 'stake1') for which to retrieve registration history
Response
HTTP 200 response for getAccountRegistrations.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account withdrawals
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Retrieves the complete history of reward withdrawals for a specific Cardano stake account. Withdrawals transfer accumulated staking rewards from the reward account to a regular address for spending
Parameters
stake_addressstringrequiredpathThe Bech32-encoded Cardano stake address (starts with 'stake1') for which to retrieve withdrawal history
addressstringrequiredpathCardano payment address in Bech32 format.
Response
HTTP 200 response for getAccountWithdrawals.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account MIRs
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Retrieves the complete history of Move Instantaneous Rewards (MIR) for a specific Cardano stake account. MIR certificates are used to transfer funds from the Cardano reserves or treasury directly to stake addresses, typically during special distribution events or protocol transitions
Parameters
stake_addressstringrequiredpathThe Bech32-encoded Cardano stake address (starts with 'stake1') for which to retrieve MIR history
addressstringrequiredpathCardano payment address in Bech32 format.
Response
HTTP 200 response for getAccountMIRs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Associated addresses
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all payment (UTXO) addresses that are controlled by the given stake key.
Parameters
addressstringrequiredpathBech32-encoded stake address used to look up associated payment addresses.
Response
HTTP 200 response for getAccountAddresses.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Assets in associated addresses
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all native assets held across every payment address controlled by the given stake key.
Parameters
addressstringrequiredpathBech32-encoded stake address whose controlled assets are queried.
Response
HTTP 200 response for getAccountAddressAssets.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Total balance of controlled addresses
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns aggregated balance statistics for all payment addresses associated with the given stake key.
Parameters
addressstringrequiredpathBech32-encoded stake address whose aggregated totals are queried.
Response
HTTP 200 response for getAccountAddressesTotal.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account stake history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a chronological list of the account's staking history showing the delegated amount and target pool for each epoch in which the stake key was active.
Parameters
stake_addressstringrequiredpathBech32-encoded stake address whose staking history is being queried.
Response
HTTP 200 response for getAccountHistory.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Stake address not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Account delegation history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Retrieves the complete history of delegation events for a specific Cardano stake account. Each entry represents a transaction where the account changed its delegation to a stake pool, including the effective epoch, amounts, and transaction details
Parameters
stake_addressstringrequiredpathThe Bech32-encoded Cardano stake address (starts with 'stake1') for which to retrieve delegation history
Response
HTTP 200 response for getAccountDelegations.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Addresses
Addresses operations.
Get address information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns detailed information about a specific Cardano address including current balance, address type, and linked stake address.
Parameters
addressstringrequiredpathBech32-encoded Cardano address to query.
Response
HTTP 200 response for getAddress.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get address totals
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns cumulative transaction statistics for a specific address including total ADA received, sent, and transaction count.
Parameters
addressstringrequiredpathBech32-encoded Cardano address to query.
Response
HTTP 200 response for getAddressTotals.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get UTXOs by asset
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all unspent transaction outputs (UTXOs) at the given address that contain the specified native asset.
Parameters
addressstringrequiredpathBech32-encoded Cardano address to query for UTXOs.
assetstringrequiredpathAsset unit identifier formed by concatenating the policy ID and hex-encoded asset name.
Response
HTTP 200 response for getAddressUtxosByAsset.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get address transactions
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of transactions involving the specified address, ordered by block height.
Parameters
addressstringrequiredpathBech32-encoded Cardano address whose transaction history is being queried.
countinteger<= 100100queryMaximum number of transactions to return per page. Defaults to 100; cannot exceed 100.
pageinteger1queryPage number for pagination. Defaults to 1.
orderstringascdescdescquerySort order of the results by block height. "asc" for ascending, "desc" for descending.
Response
HTTP 200 response for getAddressTransactions.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get extended address information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns detailed information about a specific Cardano address including current balances with decimal precision metadata and NFT on-chain metadata flags for each held asset, the linked stake address, address type, and whether the address is script-controlled.
Parameters
addressstringrequiredpathBech32-encoded Cardano payment address to query.
Response
HTTP 200 response for getAddressExtended.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Address not found on the blockchain.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get address UTXOs
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all unspent transaction outputs (UTXOs) currently held at the specified Cardano address. Each UTXO includes the originating transaction hash, output index, value breakdown, optional datum information, and reference script hash.
Parameters
addressstringrequiredpathBech32-encoded Cardano payment address whose UTXOs are being queried.
Response
HTTP 200 response for getAddressUtxos.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Address not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Assets
Assets operations.
List all assets
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all native assets minted on the Cardano blockchain.
Parameters
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order of the results. "asc" for ascending, "desc" for descending.
Response
HTTP 200 response for listAssets.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Asset information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns detailed on-chain metadata, supply information, and optional off-chain metadata for a specific native asset.
Parameters
assetstringrequiredpathAsset unit identifier (policy ID concatenated with the hex-encoded asset name).
Response
HTTP 200 response for getAsset.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Asset mint/burn history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated history of all mint and burn events for the specified native asset.
Parameters
assetstringrequiredpathAsset unit identifier (policy ID + hex-encoded asset name).
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order of the results.
Response
HTTP 200 response for getAssetHistory.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Asset transaction history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all transactions involving the specified native asset.
Parameters
assetstringrequiredpathAsset unit identifier (policy ID + hex-encoded asset name).
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order of the results.
Response
HTTP 200 response for getAssetTransactions.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Asset distribution
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all addresses that hold the specified native asset along with the quantity each holds.
Parameters
assetstringrequiredpathAsset unit identifier (policy ID + hex-encoded asset name).
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order of the results.
Response
HTTP 200 response for getAssetAddresses.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Assets by policy
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all native assets minted under the specified minting policy ID.
Parameters
policy_idstringrequiredpathBlake2b-224 hash of the minting policy script.
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order of the results.
Response
HTTP 200 response for getAssetsByPolicy.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Blocks
Blocks operations.
Get latest block
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns full details of the most recently minted block on the Cardano blockchain.
Response
HTTP 200 response for getLatestBlock.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transactions in latest block
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of transaction hashes included in the most recently minted block.
Response
HTTP 200 response for getLatestBlockTxs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get block by ID or hash
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns full details of a specific block identified by its Blake2b-256 hash or block number.
Parameters
block_idstringrequiredpathBlock identifier — either the Blake2b-256 block hash or the integer block number (height).
Response
HTTP 200 response for getBlockById.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get next blocks
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of blocks that follow the specified block.
Parameters
block_idstringrequiredpathBlock hash or block number of the starting block.
Response
HTTP 200 response for getNextBlocks.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get previous blocks
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of blocks that precede the specified block.
Parameters
block_idstringrequiredpathBlock hash or block number of the starting block.
Response
HTTP 200 response for getPreviousBlocks.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get block by slot number
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the block that was produced in the specified absolute slot number.
Parameters
slotintegerrequiredpathAbsolute slot number to look up.
Response
HTTP 200 response for getBlockBySlot.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get block by epoch and slot
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the block produced at the given slot within the specified epoch.
Parameters
epochintegerrequiredpathEpoch number in which the slot resides.
slotintegerrequiredpathSlot number within the specified epoch.
Response
HTTP 200 response for getBlockByEpochSlot.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transactions in a block
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all transaction hashes included in the specified block.
Parameters
blockstringrequiredpathBlock hash or block number.
Response
HTTP 200 response for getBlockTxs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get addresses involved in a block
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all unique addresses that appear as inputs or outputs in any transaction within the specified block.
Parameters
blockstringrequiredpathBlock hash or block number.
Response
HTTP 200 response for getBlockAddresses.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Epochs
Epochs operations.
Get latest epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the number of the current (latest) epoch on the Cardano blockchain.
Response
HTTP 200 response for getLatestEpoch.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get latest epoch protocol parameters
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the full set of protocol parameters that are active during the current (latest) epoch.
Response
HTTP 200 response for getLatestEpochParameters.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get next epochs
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of epoch numbers that follow the specified epoch.
Parameters
epochintegerrequiredpathStarting epoch number.
Response
HTTP 200 response for getNextEpochs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get previous epochs
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of epoch numbers that precede the specified epoch.
Parameters
epochintegerrequiredpathStarting epoch number.
Response
HTTP 200 response for getPreviousEpochs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake distribution for epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the stake distribution across all pools for the specified epoch, including active stake and delegator count.
Parameters
epochintegerrequiredpathEpoch number for which to retrieve the stake snapshot.
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum results per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order.
Response
HTTP 200 response for getEpochStakes.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake for specific pool in epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the stake distribution for a single pool during the specified epoch.
Parameters
epochintegerrequiredpathEpoch number.
poolstringrequiredpathBech32-encoded or hex-encoded stake pool ID.
Response
HTTP 200 response for getEpochStakeByPool.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get blocks in epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of blocks minted during the specified epoch.
Parameters
epochintegerrequiredpathEpoch number.
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Defaults to 100; max 100.
orderstringascdescdescquerySort order.
Response
HTTP 200 response for getEpochBlocks.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get blocks minted by pool in epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns blocks minted by a specific stake pool during the given epoch.
Parameters
epochintegerrequiredpathEpoch number.
poolstringrequiredpathBech32 or hex-encoded stake pool ID.
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescdescquerySort order.
Response
HTTP 200 response for getEpochBlocksByPool.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get protocol parameters for epoch
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the protocol parameters that were active during the specified epoch.
Parameters
epochintegerrequiredpathEpoch number.
Response
HTTP 200 response for getEpochParameters.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get epoch details
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns comprehensive information about a specific Cardano epoch including its time boundaries, block and transaction counts, total output and fees, and the active stake snapshot.
Parameters
epochintegerrequiredpathThe epoch number to query.
Response
HTTP 200 response for getEpoch.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Epoch not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Genesis
Genesis operations.
Get genesis configuration
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the genesis configuration parameters that were used to bootstrap the Cardano blockchain.
Response
HTTP 200 response for getGenesis.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Governance
Governance operations.
Get the constitutional committee information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns information about the current constitutional committee, including its quorum threshold and the list of committee members with their credentials and status.
Response
HTTP 200 response for getGovernanceCommittee.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Blockfrost
Blockfrost operations.
Get the constitutional committee votes
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of all votes cast by constitutional committee members on governance actions. Each entry represents a single vote by a committee member's hot credential on a specific governance proposal.
Response
HTTP 200 response for getGovernanceCommitteeVotes.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Metadata
Metadata operations.
List all transaction metadata labels
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all distinct metadata labels that have been used in transactions on the Cardano blockchain.
Parameters
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getMetadataLabels.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get metadata content by label
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns transaction metadata entries associated with the specified label.
Parameters
labelstringrequiredpathNumeric metadata label to query.
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getMetadataByLabel.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction metadata CBOR by label
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of transaction metadata entries for the specified numeric label with the metadata content provided in both raw CBOR hex encoding and a secondary hex metadata field. This endpoint is useful when the client needs the exact on-chain byte representation rather than a potentially lossy JSON conversion. Common well-known labels include 721 (CIP-25 NFT metadata), 674 (CIP-20 transaction messages), and 1967 (nut.link oracle feeds). Labels are registered under the CIP-10 standard.
Parameters
labelstringrequiredpathNumeric metadata label to query. Labels are unsigned integers that serve as top-level keys in the Cardano transaction metadata map (auxiliary data). They partition metadata into logical namespaces so that different applications can coexist within the same transaction without collision.
countinteger<= 100100queryMaximum number of metadata entries to return per page. Defaults to 100; cannot exceed 100.
pageinteger1queryPage number for pagination. The first page is 1.
orderstringascdescascquerySort order of the results by transaction inclusion time. "asc" returns oldest transactions first; "desc" returns newest first.
Response
HTTP 200 response for getMetadataByLabelCbor.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
No metadata found for the given label.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Network
Network operations.
Get network information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns detailed information about the Cardano network's ADA supply breakdown (maximum, total, circulating, locked, treasury, and reserves) and the current staking statistics (live and active stake).
Response
HTTP 200 response for getNetwork.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get Cardano network eras
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of all Cardano ledger eras (Byron, Shelley, Allegra, Mary, Alonzo, Babbage, Conway) with their start and end boundaries expressed in epoch and slot numbers.
Response
HTTP 200 response for getNetworkEras.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Pools
Pools operations.
List active stake pools
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of Bech32-encoded IDs of all currently registered and active stake pools on the Cardano network.
Parameters
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getPools.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
List retired stake pools
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all stake pools that have completed their retirement.
Parameters
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getRetiredPools.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
List retiring stake pools
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a list of stake pools that are scheduled to retire in a future epoch.
Response
HTTP 200 response for getRetiringPools.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool metadata
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns off-chain metadata registered by the specified stake pool, such as name, ticker, description, and homepage URL.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool ID.
Response
HTTP 200 response for getPoolMetadata.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool relays
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the list of network relay endpoints registered by the specified stake pool.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool ID.
Response
HTTP 200 response for getPoolRelays.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool delegators
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of addresses currently delegating to the specified stake pool.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool ID.
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getPoolDelegators.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool blocks
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of block hashes minted by the specified stake pool.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool ID.
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getPoolBlocks.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool update history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the full history of registration and update certificates submitted for the specified stake pool.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool ID.
Response
HTTP 200 response for getPoolUpdates.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
List stake pools with extended information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all registered stake pools enriched with live and active stake amounts, saturation level, block minting count, pledge, cost parameters, and off-chain metadata.
Parameters
pageinteger1queryPage number for pagination. Defaults to 1.
countinteger<= 100100queryMaximum number of results per page. Defaults to 100; cannot exceed 100.
orderstringascdescascquerySort order of the results.
Response
HTTP 200 response for getPoolsExtended.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool details
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns comprehensive on-chain details for a specific stake pool including live and active stake, saturation, delegator count, pledge information, cost parameters, VRF key, reward account, owner addresses, and full registration and retirement transaction history.
Parameters
pool_idstringrequiredpathBech32-encoded or hex-encoded stake pool identifier.
Response
HTTP 200 response for getPool.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Pool not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get stake pool epoch history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a chronological list of per-epoch performance data for the specified stake pool, including blocks minted, active stake, relative size, delegator count, earned rewards, and collected fees.
Parameters
pool_idstringrequiredpathBech32 or hex-encoded stake pool identifier.
Response
HTTP 200 response for getPoolHistory.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Pool not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Scripts
Scripts operations.
List all scripts
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all script hashes deployed on the Cardano blockchain.
Parameters
pageinteger1queryPage number. Defaults to 1.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for listScripts.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get script information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns detailed information about a specific script including its type and serialised size.
Parameters
scriptstringrequiredpathScript hash identifier.
Response
HTTP 200 response for getScript.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get script JSON representation
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the JSON representation of a native (timelock) script. For Plutus scripts the response may contain a wrapper indicating the Plutus version.
Parameters
scriptstringrequiredpathScript hash identifier.
Response
HTTP 200 response for getScriptJson.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get script CBOR representation
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the hex-encoded CBOR serialisation of the script.
Parameters
scriptstringrequiredpathScript hash identifier.
Response
HTTP 200 response for getScriptCbor.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get redeemers for script
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns a paginated list of all redeemers that have been used with the specified script across all transactions.
Parameters
scriptstringrequiredpathScript hash identifier.
pageinteger1queryPage number.
countinteger<= 100100queryResults per page. Max 100.
orderstringascdescascquerySort order.
Response
HTTP 200 response for getScriptRedeemers.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get CBOR datum for script
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the hex-encoded CBOR representation of the datum associated with the given datum hash.
Parameters
scriptstringrequiredpathDatum hash identifier.
Response
HTTP 200 response for getScriptDatumCbor.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get datum value by hash
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the full JSON representation of a Plutus datum identified by its Blake2b-256 hash. Datums are structured data values attached to transaction outputs and consumed by Plutus validator scripts. The datum hash is recorded on-chain inside the UTXO, while the actual datum content is supplied via the transaction witness set or embedded as an inline datum (CIP-32). The returned JSON follows the canonical Plutus JSON schema where data is expressed through constructors, fields, integers, byte strings, lists, and maps.
Parameters
datum_hashstringrequiredpathBlake2b-256 hash of the datum to retrieve, encoded as a 64-character lowercase hexadecimal string. This hash is computed over the CBOR-serialised datum and is stored on-chain in the UTXO that references it.
Response
HTTP 200 response for getScriptDatum.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
No datum found for the given hash.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Transactions
Transactions operations.
Get transaction info
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns full details of a transaction identified by its hash.
Parameters
hashstringrequiredpathThe unique transaction hash identifier (64 hexadecimal characters)
Response
HTTP 200 response for getTransaction.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction stakes
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all stake key registration and deregistration certificates included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionStakes.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction delegations
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns delegation certificates included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionDelegations.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction withdrawals
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all reward account withdrawals included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionWithdrawals.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get MIRs in transaction
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all Move Instantaneous Reward (MIR) certificates included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionMirs.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get pool updates in transaction
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns pool registration or parameter-update certificates included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionPoolUpdates.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get pool retirements in transaction
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns pool retirement certificates included in the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionPoolRetires.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction metadata
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns JSON metadata attached to the transaction, grouped by label.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionMetadata.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction metadata in CBOR
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the hex-encoded CBOR serialisation of the metadata attached to the transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionMetadataCbor.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get redeemers for transaction
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns all Plutus script redeemers included in the specified transaction.
Parameters
txstringrequiredpathTransaction hash (hex).
Response
HTTP 200 response for getTransactionRedeemers.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Get transaction UTXOs
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Returns the full input and output UTXO breakdown of a specific transaction. Each input shows the source address, value, and originating transaction reference; each output shows the destination address, value, datum information, and whether the output has been consumed by a subsequent transaction.
Parameters
txstringrequiredpathBlake2b-256 hex-encoded hash of the transaction to query.
Response
HTTP 200 response for getTransactionUtxos.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Transaction not found.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.
Utils
Utils operations.
Generate address from xpub
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Derives a Cardano Shelley payment address from an extended public key (xpub) using the specified role (external or internal/change) and address derivation index.
Parameters
addressstringrequiredpathExtended public key (xpub) encoded in hex or base58. This is the account-level public key from which child addresses are derived.
roleinteger01requiredpathBIP-44 role index. 0 = external (receiving) address, 1 = internal (change) address.
indexinteger>= 0requiredpathZero-based derivation index of the address to generate.
Response
HTTP 200 response for generateAddressFromXpub.
Bad Request. The request is malformed or contains invalid parameters.
Unauthorized: API key is present but rejected by the NOWNodes gateway.
Extended public key not found or invalid.
Missing API key. The NOWNodes gateway returns plain text for this error.
Internal Server Error. The gateway or backend failed while processing the request.