Get ETH value of multicall transaction

I am attempting to pull back the ETH value of a multicall transaction, however the basic gettransaction value comes back as 0. I am using infura as my provider and I can successfully use brownie to inspect a transaction however not the ETH value as I was hoping. Any help would be greatly appreciated

Snippet of code

async function run(){
const transaction = await (web3.eth.getTransaction('0x10e85deb6134a5c4aa73b36f6337883d35ab37b1b8a064fdb94f0f119ff5db4f'));
console.log (transaction)

It gives me an output like the below

{
  accessList: [],
  blockHash: '0xd5644626dd288fcbd68b62aff4dfa8a41e7c7a012b8638aafd77a625c428e5e8',
  blockNumber: 14114937,
  chainId: '0x1',
  from: '0x483ee6575CFFe7C2acb69cc8AC7e0bf6588cf4D4',
  gas: 188590,
  gasPrice: '164548474405',
  hash: '0x10e85deb6134a5c4aa73b36f6337883d35ab37b1b8a064fdb94f0f119ff5db4f',
  input: '0x5ae401dc0000000000000000000000000000000000000000000000000000000061f82087000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000e404e45aaf0000000000000000000000003b484b82567a09e2588a13d54d032153f0c0aee0000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc200000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000001badbad2ac0f45f92df70c20000000000000000000000000000000000000000000000000b10d7b8d9ea058b000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004449404b7c0000000000000000000000000000000000000000000000000b10d7b8d9ea058b000000000000000000000000483ee6575cffe7c2acb69cc8ac7e0bf6588cf4d400000000000000000000000000000000000000000000000000000000',
  maxFeePerGas: '175442481798',
  maxPriorityFeePerGas: '1500000000',
  nonce: 6,
  r: '0x8783f5f9e99b39179eb2a7f6172c5729a53c91cf466f3796db673d2070af6ac0',
  s: '0x7f7fbf57ab617042da248f602c2f977d96663b5056e9270c6fa66b0ea88e834a',
  to: '0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45',
  transactionIndex: 34,
  type: 2,
  v: '0x0',
  value: '0'
}

Using brownie my tx.call_trace provides an error "IndexError: list index out of range" I am not sure if this is the right track to pull back this information. I have also tried to parse the transaction input in order to inspect the information however that has also been unsuccessful with the below error

Error I receive then is "Error: Invalid continuation byte"

Snippet of code

async function run(){
const transaction = await (web3.eth.getTransaction('0x10e85deb6134a5c4aa73b36f6337883d35ab37b1b8a064fdb94f0f119ff5db4f'));
output = web3.utils.hexToString(input)
console.log (output)