Bitcoin
Bitcoin Core – REST API Documentation
I’m trying to use Bitcoin Core’s REST API. You can do basic things like get the latest block or get transaction details. But I couldn’t find a detailed description of the REST API. I checked the official release notes here, but they are not complete.
To give you an example, you cannot find information to obtain the inputs and outputs of a transaction upon request. tx/hash/populate
Instead of tx/hash
Alternatively, you can get the last block via: block/tip
I want to find this information
You can see the complete JSON RPC reference here. Is there a REST equivalent?
Lastly, should I use rpc or can I use the rest of the API?
Thanks, Dante