For the complete documentation index, see llms.txt. This page is also available as Markdown.

Block Book (legacy)

BlockBook (legacy) operations.

Legacy get block hash by height.

get

Bitcore Insight-compatible V1 route for Bitcoin-type coins.

Load estimate: Low; indexed height-to-hash lookup.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
heightintegerRequired

Block height on the backend main chain.

Example: 860730
Responses
200

Block hash at the requested height.

application/json

Object containing schema details.

blockHashstringRequired

Block hash.

Example: 0000000000000000000b7b8574bc6fd285825ec2dbcbeca149121fc05b0c828c
get/api/v1/block-index/{height}

Legacy get transaction.

get

Bitcore Insight-compatible V1 transaction shape for Bitcoin-type coins.

Load estimate: Medium; grows with inputs, outputs, scripts, and raw transaction size.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
txidstringRequired

Transaction id/hash.

Example: 8c1e3dec662d1f2a5e322ccef5eca263f98eb16723c6f990be0c88c1db113fb1
Responses
200

Legacy transaction payload.

application/json

Legacy Bitcore Insight-compatible payload.

Other propertiesanyOptional
get/api/v1/tx/{txid}

Legacy get address.

get

Bitcore Insight-compatible V1 address shape for Bitcoin-type coins.

Load estimate: Variable; grows with address transaction count and legacy response expansion.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
addressstringRequired

Chain address.

Example: tb1qwntjdqmxlvt5uay6s06mjmwmsjmx6xkercxzp4
Responses
200

Legacy address payload.

application/json

Legacy Bitcore Insight-compatible payload.

Other propertiesanyOptional
get/api/v1/address/{address}

Legacy get address UTXOs.

get

Bitcore Insight-compatible V1 UTXO list for Bitcoin-type coins.

Load estimate: Medium; grows with the number of unspent outputs.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
addressstringRequired

Chain address.

Example: tb1qwntjdqmxlvt5uay6s06mjmwmsjmx6xkercxzp4
Responses
200

Legacy UTXO list.

application/json

Legacy UTXO list.

Other propertiesanyOptional
get/api/v1/utxo/{address}

Legacy get block by height or hash.

get

Bitcore Insight-compatible V1 block shape for Bitcoin-type coins.

Load estimate: Medium to high; grows with block transaction count and legacy payload size.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
blockIdstringRequired

Block height or block hash.

Example: 760f8ed32894ccce9c1ea11c8a019cadaa82bcb434b25c30102dd7e43f326217
Responses
200

Legacy block payload.

application/json

Legacy block object.

Other propertiesanyOptional
get/api/v1/block/{blockId}

Legacy estimate fee target.

get

Bitcore Insight-compatible V1 fee estimate for Bitcoin-type coins.

Load estimate: Low; a small backend fee estimate lookup.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
blocksinteger · min: 1Required

Confirmation target in blocks.

Example: 2
Responses
200

Decimal fee estimate in chain base currency.

application/json

Object containing schema details.

resultstringRequired

Fee estimate string.

Example: 0.00002460
get/api/v1/estimatefee/{blocks}

Legacy broadcast transaction using the path.

get

Bitcore Insight-compatible V1 broadcast route for Bitcoin-type coins.

Load estimate: High; validates and forwards to the backend, with cost growing with transaction size and backend mempool policy checks.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Path parameters
hexstringRequired

Raw transaction.

Example: 02000000000101662a...Pattern: ^[0-9a-fA-F]+$
Responses
200

Broadcast result.

application/json

Object containing schema details.

resultstringRequired

Transaction id.

Example: 7c3be24063f268aaa1ed81b64776798f56088757641a34fb156c4f51ed2e9d25
get/api/v1/sendtx/{hex}

Legacy broadcast transaction using the request body.

post

Bitcore Insight-compatible V1 broadcast route for Bitcoin-type coins.

Load estimate: High; validates and forwards to the backend, with cost growing with transaction size and backend mempool policy checks.

Authorizations
api-keystringRequired

NOWNodes API key passed in the api-key header.

Body
stringOptional

Alternative schema variant for this parameter or payload.

Example: 0x00Pattern: ^[0-9a-fA-F]+$
Responses
200

Broadcast result.

application/json

Object containing schema details.

resultstringRequired

Transaction id.

Example: 7c3be24063f268aaa1ed81b64776798f56088757641a34fb156c4f51ed2e9d25
post/api/v1/sendtx/

Last updated