The majority of the blockchain internet explorer services do not display the complete raw block files in hex format as it is standard practice. You can still obtain this information if you are in control of your own copy of the Bitcoin Core and utilize the getblock RPC method with verbosity setting to zero (0) to receive the complete raw hex block information.
All that is necessary to do this is to download and install Bitcoin Core, allow time to sync, and execute the getblock RPC method with verbosity setting 0. If you want to receive the latest raw block data from the blockchain, you must be running a Bitcoin Core as this is the only way to receive accurate raw block data from the blockchain.
That's a lot of work to just get a couple of blocks though. Here's a cool but slightly harder method: write a small script that connects to other peers on the bitcoin P2P network aka nodes, and request the block you need using a
getdata message and the block's hash

You can start by reading this to get the idea:
https://www.righto.com/2014/02/bitcoins-hard-way-using-raw-bitcoin.htmlThe process is pretty much the same.
- Find peers, connect to one
- Send/receive
version and
verack messages to complete the handshake process
- Instead of last step of the above article (which is sending a
tx message) you need to send a
getdata message with an
inv message that has
MSG_WITNESS_BLOCK (2 | (1 << 30)) as its type.