VueJS: JSON objects are not showing in my code

I have API that stores JSON data as shown in JSON body below… I wanted to show the data amount stored in installments but it didn’t work good because its showing me each amount value two times and I couldn’t figure out the problem here.

{
  "response": [{
        "floors": [{
              "flats": [{
                    "status": "sold",
                    "price": "150000",
                    "currency": "USD",
                    "end_date": "Not Set",
                    "buyer": "ella",
                    "buyer_phone_number": "002822128",
                    "receipt_number_field": "553108012022",
                    "size_unit": "M",
                    "_id": "61d9b61397e87e39832a5abb",
                    "flat_number": 1,
                    "description": "This is a newly created flat.",
                    "city": "NY",
                    "payment": {
                      "installment_payment": {
                        "installments": [{
                            "amount": "1344",
                            "date": "2022-01-13",
                            "is_paid": false
                          },
                          {
                            "amount": "444",
                            "date": "2022-01-24",
                            "is_paid": false
                          },
                          {
                            "amount": "44444",
                            "date": "2022-01-17",
                            "is_paid": false
                          }
                        ],
                        "remaining": "150000"
                      },
                      "paid_amount": "1234"
                    },
                    "floor": "61d9b61397e87e39832a5aba",
                    "building": "61d9b61397e87e39832a5ab9",
                    "size": "176.25",
                    "directions": " south",
                    "createdAt": "2022-01-08T16:04:43.557Z",
                    "updatedAt": "2022-01-08T16:22:29.220Z",
                    "__v": 0
                  },

my code:

<div v-for="(flat,index) in Flats" :key="index">
<div v-for="(find,indexT) in flat.payment" :key="indexT" >
<div v-if="flat.payment.installment_payment">
 <div v-for="(find,indexT) in  flat.payment.installment_payment.installments" :key="indexT">
                <div v-if="find.amount >0">

                 <p> {{find.amount}}$  amount </p>
                                         
                                      </div>
                                      </div>
                                    </div>
                                </div>
                                </div>

p.S: I stored my API data in array Flats