Home

Blockfrost Cardano API - Modified Methods

v6.7.2
Base URL
https://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-keyAuthapiKey

NOWNodes 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

GET
https://ada-blockfrost.nownodes.io/accounts/{address}

Authorizations

ApiKeyAuthApiKeyAuth

api-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_addressstringrequiredpath

Bech32-encoded stake address starting with the stake1 prefix.

Response

200OK

HTTP 200 response for getAccount.

400Bad Request

Bad Request. The request is malformed or contains invalid parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or backend failed while processing the request.

Total balance of controlled addresses

GET
https://ada-blockfrost.nownodes.io/accounts/{address}/addresses/total

Authorizations

ApiKeyAuthApiKeyAuth

api-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

addressstringrequiredpath

Bech32-encoded stake address whose aggregated totals are queried.

Response

200OK

HTTP 200 response for getAccountAddressesTotal.

400Bad Request

Bad Request. The request is malformed or contains invalid parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or backend failed while processing the request.

Account delegation history

GET
https://ada-blockfrost.nownodes.io/accounts/{stake_address}/delegations

Authorizations

ApiKeyAuthApiKeyAuth

api-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_addressstringrequiredpath

Bech32-encoded stake address starting with the stake1 prefix.

Response

200OK

HTTP 200 response for getAccountDelegations.

400Bad Request

Bad Request. The request is malformed or contains invalid parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or backend failed while processing the request.

Addresses

Addresses operations.

Get address totals

GET
https://ada-blockfrost.nownodes.io/addresses/{address}/total

Authorizations

ApiKeyAuthApiKeyAuth

api-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

addressstringrequiredpath

Bech32-encoded Cardano address to query.

Response

200OK

HTTP 200 response for getAddressTotals.

400Bad Request

Bad Request. The request is malformed or contains invalid parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or backend failed while processing the request.

Assets

Assets operations.

Asset transaction history

GET
https://ada-blockfrost.nownodes.io/assets/{asset}/transactions

Authorizations

ApiKeyAuthApiKeyAuth

api-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

assetstringrequiredpath

Asset unit identifier (policy ID concatenated with the hex-encoded asset name).

pageinteger<int64>query

Page number for pagination. Defaults to 1.

countinteger<int64><= 100100query

Maximum number of results per page. Defaults to 100; cannot exceed 100.

orderstringascdescdescquery

Sort order of the results.

fromstringquery

Block number, optionally suffixed with :tx_index, where the block range starts (inclusive).

tostringquery

Block number, optionally suffixed with :tx_index, where the block range ends (inclusive).

Response

200OK

HTTP 200 response for getAssetTransactions.

400Bad Request

Bad Request. The request is malformed or contains invalid parameters.

401Unauthorized

Unauthorized: API key is present but rejected by the NOWNodes gateway.

422Unprocessable Entity

Missing API key. The NOWNodes gateway returns plain text for this error.

500Internal Server Error

Internal Server Error. The gateway or backend failed while processing the request.