API to get hashes of all transactions of 1st block

Hello,

Is there any way to get all transaction hashes of block height 1?

local/chain/blocks-after API returns the next 10 blocks information for the given block.
If I pass 0 block height then it returns an error that height must be positive.

In such a case how we can retrieve the hashes of 1st block

Hmm. @BloodyRookie which one endpoint can be used?

Please tell me at least its possible through API or not?
I left only with this now.

Thanks for all your help @CryptoBeliever You really helped a lot!

You can use the POST request /block/at/public with the body
{
“height”: 1
}
to retrieve the Nemesis block. But you have to calculate hashes on your own.

It means we can’t get transaction hashes for the 1st block from API.