Blockfrost Cardano API - Modified Methods
v6.7.2https://ada-blockfrost.nownodes.ioNOWNodes Cardano (Blockfrost) endpoint (API Changelog 6.6.1 to 6.7.2).API Changelog 6.6.1 to 6.7.2 - Blockfrost (Cardano), NOWNodes endpoint https://ada-blockfrost.nownodes.io. Computed from the upstream blockfrost-backend-ryo release notes (v6.7.0, v6.7.1, v6.7.2).
Methods whose contract or behavior changed between 6.6.1 and 6.7.2, documented in full as they exist in 6.7.2.
Authentication
api-keyAuthapiKeyNOWNodes API key passed in the api-key header.
API Key: api-key in header
API Changes Blockfrost 6.6.1 > 6.7.2 / Modified methods
Accounts
Accounts operations.
Account information
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Modified in 6.7.2: registered, active and pool_id are resolved correctly when the account's latest deregistration and re-registration happened in the same transaction (certificates are compared in ledger order), so such accounts no longer report registered: false with a null pool_id.
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 the stake1 prefix.
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.
Total balance of controlled addresses
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Modified in 6.7.1: totals are aggregated in a single pass, so asset-heavy accounts complete instead of timing out; with the server-side addressTotalsTxOutLimit option enabled, the endpoint answers HTTP 400 for accounts above the configured tx-output count (disabled by default).
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 delegation history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Modified in 6.7.0: pagination is applied before joining auxiliary tables, which improves response times on accounts with long delegation histories; the response shape is unchanged.
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_addressstringrequiredpathBech32-encoded stake address starting with the stake1 prefix.
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 totals
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Modified in 6.7.1: totals are aggregated in a single pass, so asset-heavy addresses complete instead of timing out; with the server-side addressTotalsTxOutLimit option enabled, the endpoint answers HTTP 400 for addresses above the configured tx-output count (disabled by default).
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.
Assets
Assets operations.
Asset transaction history
Authorizations
ApiKeyAuthApiKeyAuthapi-key string
NOWNodes API key passed in the api-key header.
Modified in 6.7.2: the from and to query parameters are now applied - block-range filtering in the block_number[:tx_index] form, inclusive, matching /addresses/{address}/transactions (previously the parameters were parsed but never affected the result).
Returns a paginated list of all transactions involving the specified native asset. The from and to parameters filter by an inclusive block_number[:tx_index] range.
Parameters
assetstringrequiredpathAsset unit identifier (policy ID concatenated with the hex-encoded asset name).
pageinteger<int64>queryPage number for pagination. Defaults to 1.
countinteger<int64><= 100100queryMaximum number of results per page. Defaults to 100; cannot exceed 100.
orderstringascdescdescquerySort order of the results.
fromstringqueryBlock number, optionally suffixed with :tx_index, where the block range starts (inclusive).
tostringqueryBlock number, optionally suffixed with :tx_index, where the block range ends (inclusive).
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.