Hello, here is a PHP PoC with Finary API integration.
Idea is to integrate possibility to push dashboard data to Finary user dashboard.
Here is :
Here is the sample of properties, can be push to Finary :
{
"is_automated_valuation":false,
"is_furnished":false,
"is_new":false,
"has_lift":false,
"has_sauna":false,
"has_pool":false,
"flooring_quality":null,
"flooring_condition":null,
"windows_quality":null,
"windows_condition":null,
"bathrooms_quality":null,
"bathrooms_condition":null,
"kitchen_quality":null,
"kitchen_condition":null,
"general_quality":null,
"general_condition":null,
"parking_spaces":null,
"garage_spaces":null,
"number_of_rooms":null,
"number_of_bathrooms":null,
"number_of_floors":null,
"floor_number":null,
"balcony_area":null,
"garden_area":null,
"category":"rent", [Obligatoire]
"monthly_charges":12000, [Obligatoire si locatif] --> Je force de mon côté à 0 pour simplifier
"monthly_rent":26000, [Obligatoire si locatif]
"yearly_taxes":22000, [Obligatoire si locatif] --> Je force de mon côté à 0 pour simplifier
"rental_period":"annual", [Obligatoire si locatif]
"rental_type":"nue", [Obligatoire si locatif]
"is_estimable":false,
"user_estimated_value":1600001, [Obligatoire]
"description":"RealT - 10410 Cadieux Rd, Detroit, MI 48224", [Obligatoire]
"surface":3000, [Obligatoire]
"agency_fees":null,
"notary_fees":null,
"furnishing_fees":null,
"renovation_fees":null,
"buying_price":1600000, [Obligatoire]
"building_type":"building", [Obligatoire]
"ownership_percentage":1, [Obligatoire]
"place_id":"ChIJ7bJzDHDWJIgRCht-FnDVfn8" [Obligatoire] --> Récupéré avec l'adresse de la rue.
}
If needed, feel free to ask me or @nmathey.
Have fun !
Hello, here is a PHP PoC with Finary API integration.
Idea is to integrate possibility to push dashboard data to Finary user dashboard.
Here is :
sample PoC of API methodology :
https://gist.github.com/Sigri44/3e7e499cfca8e2042984f74fc30ea7f2
unofficial API documentation :
https://lasconic.github.io/openapi-finary/
Working Python API interaction :
https://github.com/lasconic/finary_uapi/blob/main/finary_uapi/signin.py
Working Python plugin with RealT API interaction :
https://github.com/nmathey/finasync
Finary/RealT community topic :
https://community.finary.com/t/integration-realt/1062
Here is the sample of properties, can be push to Finary :
{ "is_automated_valuation":false, "is_furnished":false, "is_new":false, "has_lift":false, "has_sauna":false, "has_pool":false, "flooring_quality":null, "flooring_condition":null, "windows_quality":null, "windows_condition":null, "bathrooms_quality":null, "bathrooms_condition":null, "kitchen_quality":null, "kitchen_condition":null, "general_quality":null, "general_condition":null, "parking_spaces":null, "garage_spaces":null, "number_of_rooms":null, "number_of_bathrooms":null, "number_of_floors":null, "floor_number":null, "balcony_area":null, "garden_area":null, "category":"rent", [Obligatoire] "monthly_charges":12000, [Obligatoire si locatif] --> Je force de mon côté à 0 pour simplifier "monthly_rent":26000, [Obligatoire si locatif] "yearly_taxes":22000, [Obligatoire si locatif] --> Je force de mon côté à 0 pour simplifier "rental_period":"annual", [Obligatoire si locatif] "rental_type":"nue", [Obligatoire si locatif] "is_estimable":false, "user_estimated_value":1600001, [Obligatoire] "description":"RealT - 10410 Cadieux Rd, Detroit, MI 48224", [Obligatoire] "surface":3000, [Obligatoire] "agency_fees":null, "notary_fees":null, "furnishing_fees":null, "renovation_fees":null, "buying_price":1600000, [Obligatoire] "building_type":"building", [Obligatoire] "ownership_percentage":1, [Obligatoire] "place_id":"ChIJ7bJzDHDWJIgRCht-FnDVfn8" [Obligatoire] --> Récupéré avec l'adresse de la rue. }If needed, feel free to ask me or @nmathey.
Have fun !