Get Favorite Foods
chevron down
 

Get Favorite Foods

Retrieves a list of user-specific favorite consumed foods.

Scope: nutrition


Request

GET /1/user/[user-id]/foods/log/favorite.json

URI Arguments
user-id required The encoded ID of the user. Use "-" (dash) for current logged-in user.

Request Headers
authorization required Specify the token type and Fitbit user’s access token.
Token type: Bearer
accept optional The media type of the response content the client is expecting.
Supported: application/json
accept-language optional The measurement unit system to use for response values. See Localization.
accept-locale optional The locale to use for response values. See Localization.

Examples
GET https://api.fitbit.com/1/user/-/foods/log/favorite.json
GET https://api.fitbit.com/1/user/GGNJL9/foods/log/favorite.json
curl -X GET "https://api.fitbit.com/1/user/-/foods/log/favorite.json" \
-H "accept: application/json" \
-H "authorization: Bearer <access_token>"


Response

Element Name Description
accessLevel
brand
calories
defaultServingSize
defaultUnit : id
defaultUnit : name
defaultUnit : plural
foodId
isGeneric
locale
name
servings : multiplier
servings : servingSize<
servings : unit : id
servings : unit : name
servings : unit : plural
servings : unitId
units
[
  {
    "accessLevel": "PUBLIC",
    "brand": "Quaker",
    "calories": 140,
    "defaultServingSize": 1,
    "defaultUnit": {
      "id": 229,
      "name": "packet",
      "plural": "packets"
    },
    "foodId": 14722513,
    "isGeneric": false,
    "locale": "en_US",
    "name": "Instant Oatmeal - Raisin, Date & Walnut",
    "servings": [
      {
        "multiplier": 1,
        "servingSize": 1,
        "unit": {
          "id": 229,
          "name": "packet",
          "plural": "packets"
        },
        "unitId": 229
      },
      {
        "multiplier": 1,
        "servingSize": 37,
        "unit": {
          "id": 147,
          "name": "gram",
          "plural": "grams"
        },
        "unitId": 147
      },
      {
        "multiplier": 27.027027130126953,
        "servingSize": 1,
        "unit": {
          "id": 389,
          "name": "kg",
          "plural": "kg"
        },
        "unitId": 389
      }
    ],
    "units": [
      229,
      147,
      389
    ]
  },
}
]
      

Response Headers
content-type The media type of the response content being sent to the client.
Supported: application/json
fitbit-rate-limit-limit The quota number of calls.
fitbit-rate-limit-remaining The number of calls remaining before hitting the rate limit.
fitbit-rate-limit-reset The number of seconds until the rate limit resets.

Note: The rate limit headers are approximate and asynchronously updated. This means that there may be a minor delay in the decrementing of remaining requests. This could result in your application receiving an unexpected 429 response if you don't track the total number of requests you make yourself.

Response Type

HTTP Status Code HTTP response code. List of codes are found in the Troubleshooting Guide.
Status Message Description of the status code.
Response Body Contains the JSON response to the API call. When errors are returned by the API call, the errorType, fieldName and message text will provide more information to the cause of the failure.

Response Codes
200 A successful request.
400 The request had bad syntax or was inherently impossible to be satisfied.
401 The request requires user authentication.

Note: For a complete list of response codes, please refer to the Troubleshooting Guide.

Additional Information

A favorite food in the list provides a quick way to log the food via the Create Food Log endpoint.

Access Levels

There are 2 access level types for food log entries that an authorized user can view via API requests. Each food is annotated with an accessLevel field with one of the following values:

  • PUBLIC - Foods that are in Fitbit's public food database and are visible to any Fitbit users. Only Fitbit populates this database to avoid spam and duplicate entries.
  • PRIVATE - Foods created by a user either on the website or via the Create Food endpoint.