Understanding transactions amount vs gas fees

We are using Moralis API for fetching the transactions from differnt blockchains.
But from that how do we differentiate fee deduction transactions & actual transactions.

Output snippet:
“gas”: “30000”,
“gas_price”: “52500000000”,
“input”: “0x”,
“receipt_cumulative_gas_used”:
“4923073”, “receipt_gas_used”: “21000”,
“receipt_contract_address”: null,

is this the gas price only or includes actual transaction amount also?

A sample of output, how we want to show in our application is below. It is for reference only.

what is the transaction on chain that corresponds to this data?

Apologies for delay in response. Sharing Etherscan info & Moralis output info.

This is the transaction info:
0xf287357df53b0e0821e541cb4fa89444b67f14e874c2c129f883117086c2176b

Moralis Total Output:

{
  "hash": "0xf287357df53b0e0821e541cb4fa89444b67f14e874c2c129f883117086c2176b",
  "nonce": "2",
  "transaction_index": "272",
  "from_address": "0xd74ab33c5b94f163af3be5f557283cee71185afe",
  "to_address": "0x0f51bb10119727a7e5ea3538074fb341f56b09ad",
  "value": "0",
  "gas": "46417",
  "gas_price": "116864523586",
  "input": "0x095ea7b3000000000000000000000000d07e86f68c7b9f9b215a3ca3e79e74bf94d6a847000000000000000000000000000000000000314dc6448d9338c15b0a00000000",
  "receipt_cumulative_gas_used": "21762219",
  "receipt_gas_used": "46417",
  "receipt_contract_address": null,
  "receipt_root": null,
  "receipt_status": "1",
  "block_timestamp": "2021-11-23T17:42:18.000Z",
  "block_number": "13672226",
  "block_hash": "0xa50bffb98f12201b9261c8dae3c1e0462e6b0ff6adbf9cb910adb160d2f2a495",
  "transfer_index": null,
  "logs": [
    {
      "log_index": "505",
      "transaction_hash": "0xf287357df53b0e0821e541cb4fa89444b67f14e874c2c129f883117086c2176b",
      "transaction_index": "272",
      "address": "0x0f51bb10119727a7e5ea3538074fb341f56b09ad",
      "data": "0x000000000000000000000000000000000000314dc6448d9338c15b0a00000000",
      "topic0": "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
      "topic1": "0x000000000000000000000000d74ab33c5b94f163af3be5f557283cee71185afe",
      "topic2": "0x000000000000000000000000d07e86f68c7b9f9b215a3ca3e79e74bf94d6a847",
      "topic3": null,
      "block_timestamp": "2021-11-23T17:42:18.000Z",
      "block_number": "13672226",
      "block_hash": "0xa50bffb98f12201b9261c8dae3c1e0462e6b0ff6adbf9cb910adb160d2f2a495",
      "transfer_index": null
    }
  ]
}

Now, what I can see in Etherscan for this transaction is:

Appreciate your help on this.