The profile element returned contains general information about the nominated user as follows:
- weight_measure – either "kg" or "lb" - whether weight should be displayed in kilograms or pounds - see weight_type
- height_measure – either "cm" or "inch" - whether height should be displayed in centimeters or inches - see height_type
- last_weight_kg is a Decimal - the last recorded weight in kilograms
- last_weight_date_int is an Int – the date that the user's weight was last recorded, see dateint
- last_weight_comment – the comment recorded by the user on the last weight entry (where available)
- goal_weight_kg is a Decimal – the user's goal weight in kilograms
- height_cm is a Decimal – the user's current height in centimeters
<?xml version="1.0" encoding="utf-8" ?>
<profile xmlns="http://platform.fatsecret.com/api/1.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://platform.fatsecret.com/api/1.0/ http://platform.fatsecret.com/api/1.0/fatsecret.xsd">
<weight_measure>Kg</weight_measure>
<height_measure>Cm</height_measure>
<last_weight_kg>80.0000</last_weight_kg>
<last_weight_date_int>14289</last_weight_date_int>
<last_weight_comment>Woohoo!</last_weight_comment>
<goal_weight_kg>78.0000</goal_weight_kg>
<height_cm>187.96</height_cm>
</profile>
{ "profile": {"goal_weight_kg": "78.0000", "height_cm": "187.96", "height_measure": "Cm", "last_weight_comment": "Woohoo!", "last_weight_date_int": "14289", "last_weight_kg": "80.0000", "weight_measure": "Kg" }}