Java (Maven) wrapper for https://world.openfoodfacts.org
Add one dependency to your POM file:
<dependencies>
<dependency>
<groupId>pl.coderion</groupId>
<artifactId>openfoodfacts-java-wrapper</artifactId>
<version>0.9.3</version>
</dependency>
</dependencies>
Create wrapper object and find product by its barcode:
OpenFoodFactsWrapper wrapper = new OpenFoodFactsWrapperImpl();
ProductResponse productResponse = wrapper.fetchProductByCode("737628064502");
Check also Demo application how to do it.
Feel free to open a PR to add your application in this list.