marcortola/food-data-central

Community API client for the Food Data Central USDA nutrient database

0.0.6 2021-04-18 11:11 UTC

This package is auto-updated.

Last update: 2024-03-27 15:22:35 UTC


README

Latest Version Build Status

Installation

  1. Install Composer
  2. Execute:
$ composer require marcortola/food-data-central

This wrapper doesn't bundle the HTTP client so you are free to use your preferred one. You can inject it in the FoodDataCentralClient constructor or let the wrapper discover it. If you don't know what I am talking about, the fast solution is to require these packages:

$ composer require php-http/curl-client nyholm/psr7 php-http/message

Usage

$foodDataCentralClient = FoodDataCentralClient::create('your_api_key');

// Find food by FDC ID.
$foodItem = $foodDataCentralClient->food()->food(781125);

// Find food nutrients. See the FoodItem interface for more nutrient finders.
$calcium = $foodDataCentralClient->food()->food(781125)->getCalcium();

Read the Food Data Central API documentation here.

License

Licensed under the MIT License. See License File for more information about it.