Unfortunately, the TON http-api does not allow you to specify a block when using getAddressBalance.
https://toncenter.com/api/v2/#/accounts/get_address_balance_getAddressBalance_get
I suppose one way you could go about it is reconstructing the balance over time. Get all of the transactions until the block you're looking at is surpased:
https://toncenter.com/api/v2/#/accounts/get_transactions_getTransactions_get
You can try this with the getTransactions endpoint, just make sure that archival is on. Not an elegant solution, and be sure to test it out instead of taking my word for it.