LogoLogo
  • Erudus API
  • Change Log
  • Getting Started
    • Introduction
    • Authentication
    • Testing with Sandbox
    • Migrating from API v1
    • Responses and Error Codes
    • Other Information
  • erudus.com
  • API Reference
    • Products
  • Wholesaler Catalogs
  • Images
  • Manage Products
  • Manufacturers
  • Labels
Powered by GitBook
On this page
  1. API Reference

Products

Access product data from the Erudus data pool.

PreviousOther InformationNextWholesaler Catalogs

Last updated 9 days ago

Typical usage involves calling the List Products endpoint to find products of interest and those that have recently been updated. The Get Product end point can then be called to obtain the complete data set for a product.

If you require product data as or on behalf of a Wholesaler, you should use the endpoints.

Product data is returned in JSON format inside the data element. A full product specification includes data structured inside several sub-sections and one or more inner components. The data values are collected together in related sections, for example "allergens" or "nutrients".

Each product complies to a specification type schema. Each product can therefore contain different sets of attributes depending on its type and whether data has been provided by the manufacturer of the product.

Wholesaler Catalogs

List Products

get

Get a paginated list of products. Use next in response to get cursor value for next page.

Authorizations
Query parameters
sortstringOptional

Sort results by changed_at, manufacturer_product_name. Prefixing with a hyphen will reverse order. Defaults to '-changed_at'.

Example: manufacturer_product_name
filter[manufacturer]integerOptional

Filter by ID of manufacturer.

Example: 23
filter[brand]integerOptional

Filter by ID of brand.

Example: 2
filter[label]integerOptional

Filter by ID of label.

Example: 3
filter[changed_at]stringOptional

Filter by date product changed equal to (eq:), greater than (gt:) or less than a date (lt:).

Example: gt:2024-10-12
filter[status]stringOptional

Filter by product's current status, i.e. published or archived. Defaults to 'published,archived'.

Example: published
cursorstringOptional

Cursor hash value for next page.

Example: eyJjaGFuZ2VkX2F0IjoiMjAyNS0wNC0yMiAwODoxMjowOCIsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0
limitintegerOptional

Number of records per page.

Example: 0
countintegerOptional

Flag to request return of count value for query.

Example: 0
Responses
200Success
application/json
Responseone of
or
get
GET /v2/products HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "next": "eyJjaGFuZ2VkX2F0IjoiMjAyNS0wNC0yMiAwODoxMjowOCIsIl9wb2ludHNUb05leHRJdGVtcyI6dHJ1ZX0",
  "previous": null,
  "data": [
    {
      "erudus_id": "78ef51eb811b47818222197a80b3f522",
      "status": "published",
      "version": "1.0",
      "changed_at": "2025-05-13 15:39:50",
      "latest_version": "1.0",
      "latest_at": "2025-05-13 15:39:50",
      "schema": "alternatives",
      "schema_name": "Alternatives (Vegetarian and Vegan)",
      "manufacturer_product_name": "Quorn Roast 8 x 454g UK",
      "product_name": "Quorn Roast",
      "standardised_name": "Quorn Roast 8x",
      "manufacturer_product_code": "A03451",
      "traded_unit_gtin": null,
      "manufacturer_version_number": null,
      "manufacturer": 74,
      "manufacturer_name": "Marlow Foods Ltd (Quorn Foods)",
      "brand": 0,
      "brand_name": "Marlow Foods Ltd (Quorn Foods)",
      "label": 0,
      "label_name": null,
      "label_code": null,
      "components": [
        {
          "component_uuid": "65b448b11dbe4f10af8879e65658fbf2",
          "component_name": null,
          "internal_gtin": null,
          "manufacturers_component_code": null
        }
      ],
      "parent_id": null,
      "change_type": "revision",
      "change_reason": null,
      "reviewed_at": "2025-05-13 15:39:50"
    },
    {
      "erudus_id": "ca150db51d644578b6af6dd09417dd97",
      "status": "published",
      "version": "4.1",
      "changed_at": "2025-04-22 08:12:08",
      "latest_version": "4.1",
      "latest_at": "2025-04-22 08:12:08",
      "schema": "fish_seafood",
      "schema_name": "Fish and Seafood",
      "manufacturer_product_name": "tuna mayonnaise 1kg",
      "product_name": "Tuna Mayonnaise",
      "standardised_name": "Tuna Mayonnaise 1x1000g",
      "manufacturer_product_code": "TUNA MAYO",
      "traded_unit_gtin": null,
      "manufacturer_version_number": null,
      "manufacturer": 1339,
      "manufacturer_name": "Salad Days Ltd",
      "brand": 0,
      "brand_name": "Salad Days Ltd",
      "label": 0,
      "label_name": null,
      "label_code": null,
      "components": [
        {
          "component_uuid": "44781b00f2e34cc2a5d9bf27f4417758",
          "component_name": null,
          "internal_gtin": null,
          "manufacturers_component_code": null
        }
      ],
      "parent_id": null,
      "change_type": "revision",
      "change_reason": null,
      "reviewed_at": "2025-04-22 08:12:08"
    }
  ]
}

Get Product

get

Retrieve data for a single product using the unique Erudus ID reference.

Authorizations
Path parameters
productstringRequired

The Erudus ID of the product.

Example: 7bc42964412a4566b3daa77bd6daf275
Query parameters
versionstringOptional

Get a specific version of the product.

Example: version=1.1
outputstringOptional

Sets an alternative output format to raw, flat or ungroup.

Example: output=ungroup
Responses
200Success
application/json
404Error
application/json
get
GET /v2/products/{product} HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": {
    "erudus_id": "970654c94a29451f986ee66592ac378a",
    "standardised_name": "No Added Sugar Baked Beanz In Tomato Sauce 6x2.62kg",
    "status": "published",
    "version": "2.1",
    "changed_at": "2025-05-19 14:34:55",
    "latest_version": "2.1",
    "change_reason": null,
    "change_type": 2,
    "reviewed_at": "2025-05-19 14:34:55",
    "parent_id": null,
    "replaced_by": [],
    "codes": [],
    "general": {
      "manufacturer_product_name": "Heinz No Added Sugar Baked Beanz in Tomato Sauce (6) 2.62kg",
      "product_name": "No Added Sugar Baked Beanz in Tomato Sauce",
      "manufacturer": 222,
      "manufacturer_name": "H.J. Heinz",
      "label": 0,
      "label_name": null,
      "label_code": "",
      "brand": 0,
      "brand_name": "H.J. Heinz",
      "schema": "generic",
      "schema_name": "Generic",
      "manufacturer_product_code": "76009418",
      "product_description": "No added sugar Baked beans in a rich tomato sauce",
      "product_type": {
        "id": 1,
        "description": "Food"
      },
      "product_category": {
        "id": 52,
        "description": "Beans & Pulses"
      },
      "storage_type": {
        "id": 3,
        "description": "Ambient"
      },
      "manufacturer_address": null,
      "marketing_description": "",
      "day_code": "",
      "batch_code": "",
      "manufacturer_version_number": "",
      "effective_date": null
    },
    "outer": {
      "no_outer_present": null,
      "traded_unit_gtin": "05000157131515",
      "variable_inner_components": null,
      "consumer_units_per_traded": {
        "value": 6,
        "units": "Units"
      },
      "outer_case_gross_weight": {
        "value": 17.5,
        "units": "kg"
      },
      "outer_case_height": {
        "value": 152,
        "units": "mm"
      },
      "outer_case_depth": {
        "value": 470,
        "units": "mm"
      },
      "outer_case_net_weight": {
        "value": 15.7,
        "units": "kg"
      },
      "outer_case_width": {
        "value": 310,
        "units": "mm"
      },
      "trade_item_splittable": {
        "value": 0,
        "description": "No"
      },
      "value_added_tax_rate": null,
      "inner_packs_in_case": null
    },
    "inner_pack": {
      "inner_pack_height": null,
      "inner_pack_depth": null,
      "inner_pack_width": null,
      "inner_pack_gtin": "",
      "inner_pack_splittable": null,
      "inner_pack_gross_weight": null,
      "inner_pack_net_weight": null,
      "inner_components_in_pack": null,
      "inner_pack_product_code": ""
    },
    "safety_outer": {
      "product_health_warning": "",
      "age_restricted_product": null,
      "age_restriction": null
    },
    "pallet": {
      "non_palletised": {
        "value": 0,
        "description": "No"
      },
      "pallet_type": null,
      "pallet_gtin": "",
      "cases_per_pallet": {
        "value": 56,
        "units": "Cases"
      },
      "pallet_gross_weight": {
        "value": 1007,
        "units": "kg"
      },
      "pallet_height": {
        "value": 1.4,
        "units": "MTR"
      },
      "cases_per_pallet_layer": {
        "value": 7,
        "units": "Cases"
      },
      "layers_per_pallet": {
        "value": 8,
        "units": "Layers"
      }
    },
    "waste_outer": {
      "outer_packaging": [
        {
          "packaging_type": {
            "id": 4,
            "description": "Case"
          },
          "packaging_weight": 18,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 1,
            "description": "Plastic"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 4,
            "description": "Case"
          },
          "packaging_weight": 47,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 2,
            "description": "Paper/Cardboard"
          },
          "packaging_returnable": null
        }
      ],
      "transport_packaging": [
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 210,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 1,
            "description": "Plastic"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 753.5,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 2,
            "description": "Paper/Cardboard"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 28000,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 7,
            "description": "Wood"
          },
          "packaging_returnable": null
        }
      ],
      "inner_pack_packaging": null
    },
    "logistics": {
      "max_shelf_life": {
        "value": 365,
        "units": "Days"
      },
      "shelf_life_from_opening": null,
      "shelf_life_exempt": null
    },
    "other": {
      "manufacturer_comments": ""
    },
    "components": [
      {
        "general": {
          "component_name": "",
          "component_uuid": "daedf3308f3c44d9bbbdd8e1592a16c6"
        },
        "origin": {
          "country_of_origin": [
            {
              "id": 18,
              "description": "United Kingdom"
            }
          ],
          "place_of_provenance": "",
          "country_of_origin_details": "n/a",
          "primary_ingredient_origin": [
            {
              "id": 20,
              "description": "Other"
            }
          ],
          "primary_ingredient_details": "confidential"
        },
        "accreditations": {
          "acc_asc": null,
          "acc_aoecs": null,
          "acc_bcorp": null,
          "acc_bap_cert": null,
          "acc_brcgs_certified": {
            "value": 1,
            "description": "Yes"
          },
          "acc_brcgs_agents_brokers": null,
          "acc_brcgs_ethical": null,
          "acc_brcgs_food_safety": null,
          "acc_brcgs_gluten_free": null,
          "acc_brcgs_packaging": null,
          "acc_brcgs_plant_based": null,
          "acc_brcgs_start": null,
          "acc_brcgs_storage_distribution": null,
          "acc_bbpa": null,
          "acc_bpi": null,
          "acc_british_lion": null,
          "acc_bmpa": null,
          "acc_clas": null,
          "acc_ethical_tea": null,
          "acc_fair_trade": null,
          "acc_fa_welsh_livestock": null,
          "acc_femas": null,
          "acc_food_for_life": null,
          "acc_fsc": null,
          "acc_fssc_22000": null,
          "acc_global_gap": null,
          "acc_iceland_responsible_fisheries": null,
          "acc_ifs_food_standard": null,
          "acc_iso_14001": null,
          "acc_iso_22000": null,
          "acc_iso_45001": null,
          "acc_iso_9001_2015": null,
          "acc_leaf": null,
          "acc_loop": null,
          "acc_mel_japan": null,
          "acc_msc": null,
          "acc_ni_beef_lamb_fqas": null,
          "acc_organic": null,
          "acc_quality_meat_scotland": null,
          "acc_rainforest": null,
          "acc_red_tractor": null,
          "acc_responsible_fisheries_management": null,
          "acc_rspo": null,
          "acc_rtrs": null,
          "acc_freedom_food": null,
          "acc_sqf": null,
          "acc_salsa": null,
          "acc_school_approved": null,
          "acc_sedex": null,
          "acc_siba": null,
          "acc_spec_cheese_assoc": null,
          "acc_vegan": null,
          "acc_vegetarian": null,
          "other_accreditation": ""
        },
        "inner_other": {
          "health_marks": "",
          "intrastat_taric": "",
          "commodity_code": "",
          "meursing_code": "",
          "not_for_eu": null
        },
        "additives": {
          "artificial_antioxidants": {
            "value": 0,
            "description": "No"
          },
          "artificial_colours": {
            "value": 0,
            "description": "No"
          },
          "artificial_flavour_enhancers": {
            "value": 0,
            "description": "No"
          },
          "artificial_flavourings": {
            "value": 0,
            "description": "No"
          },
          "artificial_preservatives": {
            "value": 0,
            "description": "No"
          },
          "artificial_sweeteners": {
            "value": 1,
            "description": "Yes"
          }
        },
        "allergens": {
          "contains_celery_celeriac": {
            "value": 0,
            "description": "No"
          },
          "contains_cereal": {
            "value": 0,
            "description": "No"
          },
          "contains_barley": {
            "value": 0,
            "description": "No"
          },
          "contains_oats": {
            "value": 0,
            "description": "No"
          },
          "contains_rye": {
            "value": 0,
            "description": "No"
          },
          "contains_wheat": {
            "value": 0,
            "description": "No"
          },
          "contains_crustacea": {
            "value": 0,
            "description": "No"
          },
          "contains_eggs": {
            "value": 0,
            "description": "No"
          },
          "contains_fish": {
            "value": 0,
            "description": "No"
          },
          "contains_lupin": {
            "value": 0,
            "description": "No"
          },
          "contains_milk": {
            "value": 0,
            "description": "No"
          },
          "contains_molluscs": {
            "value": 0,
            "description": "No"
          },
          "contains_mustard": {
            "value": 0,
            "description": "No"
          },
          "contains_tree_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_almond_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_brazil_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_cashew_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_hazelnut_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_macadamia_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_pecan_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_pistachio_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_walnut_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_peanuts": {
            "value": 0,
            "description": "No"
          },
          "contains_sesame_seeds": {
            "value": 0,
            "description": "No"
          },
          "contains_soybeans": {
            "value": 0,
            "description": "No"
          },
          "contains_celery_celeriac_risk_source": null,
          "contains_cereal_risk_source": null,
          "contains_barley_risk_source": null,
          "contains_oats_risk_source": null,
          "contains_rye_risk_source": null,
          "contains_wheat_risk_source": null,
          "contains_crustacea_risk_source": null,
          "contains_eggs_risk_source": null,
          "contains_fish_risk_source": null,
          "contains_lupin_risk_source": null,
          "contains_mustard_risk_source": null,
          "contains_milk_risk_source": null,
          "contains_molluscs_risk_source": null,
          "contains_tree_nuts_risk_source": null,
          "contains_almond_nuts_risk_source": null,
          "contains_brazil_nuts_risk_source": null,
          "contains_cashew_nuts_risk_source": null,
          "contains_hazelnut_nuts_risk_source": null,
          "contains_macadamia_nuts_risk_source": null,
          "contains_pecan_nuts_risk_source": null,
          "contains_pistachio_nuts_risk_source": null,
          "contains_walnut_nuts_risk_source": null,
          "contains_peanuts_risk_source": null,
          "contains_sesame_seeds_risk_source": null,
          "contains_soybeans_risk_source": null,
          "contains_sulphur_dioxide": {
            "value": 0,
            "description": "No"
          },
          "allergen_statement_on_pack": "",
          "additional_allergen_information": "",
          "contains_cereal_gluten_20ppm": null,
          "contains_wheat_gluten_20ppm": null,
          "contains_rye_gluten_20ppm": null,
          "contains_barley_gluten_20ppm": null,
          "contains_oats_gluten_20ppm": null,
          "contains_sulphur_dioxide_risk_source": null
        },
        "free_from": {
          "free_from_gluten": null,
          "free_from_wheat": null,
          "free_from_rye": null,
          "free_from_barley": null,
          "free_from_oats": null,
          "free_from_nuts": null,
          "free_from_celery": null,
          "free_from_crustacea": null,
          "free_from_eggs": null,
          "free_from_fish": null,
          "free_from_lupin": null,
          "free_from_mustard": null,
          "free_from_lactose": null,
          "free_from_milk": null,
          "free_from_molluscs": null,
          "free_from_peanuts": null,
          "free_from_sesame": null,
          "free_from_soybeans": null,
          "free_from_sulphur_dioxide": null,
          "very_low_gluten": null
        },
        "nutrients": {
          "traffic_light_labelling": null,
          "nutritional_data_exempt": null,
          "nutritional_information_source": null,
          "nutrition_units": {
            "id": 0,
            "description": "g"
          },
          "number_of_servings": null,
          "serving_size": null,
          "serving_details": "",
          "hfss_product": null,
          "hfss_score": null,
          "fibre_type": null,
          "chol_100": null,
          "trans_fats_100": null,
          "fat_percentage_dry_100": null,
          "non_milk_extrinsic_sugars_100": null,
          "non_milk_extrinsic_sugars_prepared": null,
          "nutrition_statements": "",
          "cal_100_kj": {
            "value": 267,
            "units": "kJ"
          },
          "cal_100_kcal": {
            "value": 63,
            "units": "kcal"
          },
          "fat_100": {
            "value": 0.2,
            "units": "g"
          },
          "sat_fat_100": {
            "value": 0.01,
            "units": "g"
          },
          "mono_fat_100": null,
          "poly_fat_100": null,
          "carb_100": {
            "value": 9.2,
            "units": "g"
          },
          "sugar_carb_100": {
            "value": 1.8,
            "units": "g"
          },
          "polyols_carb_100": null,
          "starch_carb_100": null,
          "fibre_100": {
            "value": 3.5,
            "units": "g"
          },
          "protein_100": {
            "value": 4.4,
            "units": "g"
          },
          "salt_100": {
            "value": 0.6,
            "units": "g"
          },
          "sodium_100": {
            "value": 240,
            "units": "mg"
          },
          "sugar_carb_serving": null,
          "vitamin_a_100": null,
          "vitamin_d_100": null,
          "vitamin_e_100": null,
          "vitamin_k_100": null,
          "vitamin_c_100": null,
          "thiamin_b1_100": null,
          "riboflavin_b2_100": null,
          "niacin_b3_100": null,
          "vitamin_b6_100": null,
          "folate_100": null,
          "vitamin_b12_100": null,
          "biotin_b7_100": null,
          "pantothenic_acid_100": null,
          "potassium_100": null,
          "chloride_100": null,
          "calcium_100": null,
          "phosphorus_100": null,
          "magnesium_100": null,
          "iron_100": null,
          "zinc_100": null,
          "copper_100": null,
          "manganese_100": null,
          "fluoride_100": null,
          "selenium_100": null,
          "chromium_100": null,
          "molybdenum_100": null,
          "iodine_100": null,
          "cal_kcal_serving": null,
          "cal_kj_serving": null,
          "calcium_serving": null,
          "carb_serving": null,
          "polyols_carb_serving": null,
          "starch_carb_serving": null,
          "fat_serving": null,
          "sat_fat_serving": null,
          "mono_fat_serving": null,
          "poly_fat_serving": null,
          "fibre_serving": null,
          "folate_serving": null,
          "iron_serving": null,
          "protein_serving": null,
          "salt_serving": null,
          "sodium_serving": null,
          "vitamin_a_serving": null,
          "vitamin_c_serving": null,
          "zinc_serving": null,
          "vitamin_d_serving": null,
          "vitamin_e_serving": null,
          "thiamin_b1_serving": null,
          "riboflavin_b2_serving": null,
          "niacin_b3_serving": null,
          "vitamin_b6_serving": null,
          "vitamin_b12_serving": null,
          "biotin_b7_serving": null,
          "pantothenic_acid_serving": null,
          "potassium_serving": null,
          "chloride_serving": null,
          "phosphorus_serving": null,
          "magnesium_serving": null,
          "copper_serving": null,
          "manganese_serving": null,
          "fluoride_serving": null,
          "selenium_serving": null,
          "iodine_serving": null,
          "vitamin_k_serving": null,
          "chromium_serving": null,
          "molybdenum_serving": null
        },
        "nutrients_prepared": {
          "prepared_product_portion_size": null,
          "prepared_product_details": "",
          "sugar_carb_prepared": null,
          "sugar_carb_prepared_100": null,
          "cal_kcal_prepared": null,
          "cal_kcal_prepared_100": null,
          "cal_kj_prepared": null,
          "cal_kj_prepared_100": null,
          "calcium_prepared": null,
          "calcium_prepared_100": null,
          "carb_prepared": null,
          "carb_prepared_100": null,
          "polyols_carb_prepared": null,
          "polyols_carb_prepared_100": null,
          "starch_carb_prepared": null,
          "starch_carb_prepared_100": null,
          "fat_prepared": null,
          "fat_prepared_100": null,
          "sat_fat_prepared": null,
          "sat_fat_prepared_100": null,
          "mono_fat_prepared": null,
          "mono_fat_prepared_100": null,
          "poly_fat_prepared": null,
          "poly_fat_prepared_100": null,
          "fibre_prepared": null,
          "fibre_prepared_100": null,
          "folate_prepared": null,
          "folate_prepared_100": null,
          "iron_prepared": null,
          "iron_prepared_100": null,
          "protein_prepared": null,
          "protein_prepared_100": null,
          "salt_prepared": null,
          "salt_prepared_100": null,
          "sodium_prepared": null,
          "sodium_prepared_100": null,
          "vitamin_a_prepared": null,
          "vitamin_a_prepared_100": null,
          "vitamin_c_prepared": null,
          "vitamin_c_prepared_100": null,
          "zinc_prepared": null,
          "zinc_prepared_100": null,
          "vitamin_d_prepared": null,
          "vitamin_d_prepared_100": null,
          "vitamin_e_prepared": null,
          "vitamin_e_prepared_100": null,
          "thiamin_b1_prepared": null,
          "thiamin_b1_prepared_100": null,
          "riboflavin_b2_prepared": null,
          "riboflavin_b2_prepared_100": null,
          "niacin_b3_prepared": null,
          "niacin_b3_prepared_100": null,
          "vitamin_b6_prepared": null,
          "vitamin_b6_prepared_100": null,
          "vitamin_b12_prepared": null,
          "vitamin_b12_prepared_100": null,
          "biotin_b7_prepared": null,
          "biotin_b7_prepared_100": null,
          "pantothenic_acid_prepared": null,
          "pantothenic_acid_prepared_100": null,
          "potassium_prepared": null,
          "potassium_prepared_100": null,
          "chloride_prepared": null,
          "chloride_prepared_100": null,
          "phosphorus_prepared": null,
          "phosphorus_prepared_100": null,
          "magnesium_prepared": null,
          "magnesium_prepared_100": null,
          "copper_prepared": null,
          "copper_prepared_100": null,
          "manganese_prepared": null,
          "manganese_prepared_100": null,
          "fluoride_prepared": null,
          "fluoride_prepared_100": null,
          "selenium_prepared": null,
          "selenium_prepared_100": null,
          "iodine_prepared": null,
          "iodine_prepared_100": null,
          "vitamin_k_prepared": null,
          "vitamin_k_prepared_100": null,
          "chromium_prepared": null,
          "chromium_prepared_100": null,
          "molybdenum_prepared": null,
          "molybdenum_prepared_100": null
        },
        "ingredients": {
          "ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract",
          "ingredients_statements": "",
          "contains_gm_protein": {
            "value": 0,
            "description": "No"
          },
          "contains_hydro_veg": {
            "value": 0,
            "description": "No"
          },
          "contains_palm_oil": {
            "value": 0,
            "description": "No"
          },
          "alcohol_strength_per_vol": null,
          "cbd_concentration": null,
          "formatted_ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract",
          "plaintext_ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract"
        },
        "diets": {
          "vegan_suitable": {
            "id": 1,
            "description": "Suitable for"
          },
          "vegetarian_suitable": {
            "id": 1,
            "description": "Suitable for"
          },
          "halal_suitable": {
            "id": 0,
            "description": "No"
          },
          "kosher_suitable": {
            "id": 0,
            "description": "No"
          }
        },
        "handling": {
          "directions_for_use": "COOKING INSTRUCTIONS\r\nHOB:  Empty contents into a suitable sized saucepan, Heinz Beanz kettle or bain-marie.  Gently stir occasionally whilst heating.  Do not boil, overcook or add water, as this will impair the flavour.\r\nMICROWAVE (1725w):  Empty contents into a suitable microwaveable container.  Cover and heat on full power for 4 minutes.  Stir thoroughly, re-cover, then heat for a further 4 minutes on full power or until hot.  If microwave wattage is different to above, please refer to manufacurer's instructions.",
          "storage_instructions": "Empty unused contents into a suitable covered container.  Keep refrigerated and use within 2 days.",
          "storage_instructions_after_opening": "",
          "shelf_life_once_defrosted": null
        },
        "inner": {
          "no_inner_component_present": null,
          "internal_gtin": "5000157078933",
          "inner_component_diameter": null,
          "inner_component_weight": {
            "value": 2.62,
            "units": "kg",
            "units_id": 1
          },
          "inner_component_volume": null,
          "inner_component_depth": {
            "value": 155,
            "units": "mm"
          },
          "inner_component_width": {
            "value": 155,
            "units": "mm"
          },
          "inner_component_height": {
            "value": 152,
            "units": "mm"
          },
          "net_drained_weight": null,
          "variable_weight_consumer_item": {
            "value": 0,
            "description": "No"
          },
          "count_per_inner_component": null,
          "e_mark": null,
          "manufacturers_component_code": ""
        },
        "waste_inner": {
          "inner_packaging": [
            {
              "packaging_type": {
                "id": 2,
                "description": "Can"
              },
              "packaging_weight": 6,
              "recycled_plastic": null,
              "base_material_type": {
                "id": 2,
                "description": "Paper/Cardboard"
              },
              "packaging_returnable": null
            },
            {
              "packaging_type": {
                "id": 2,
                "description": "Can"
              },
              "packaging_weight": 275,
              "recycled_plastic": null,
              "base_material_type": {
                "id": 6,
                "description": "Steel"
              },
              "packaging_returnable": null
            }
          ]
        },
        "characteristics": {
          "micro_trend_analysis": {
            "value": 1,
            "description": "Yes"
          },
          "shelf_life_testing": {
            "value": 1,
            "description": "Yes"
          },
          "commercially_sterile": null
        },
        "supplementary_information": {
          "cheese_format": null,
          "egg_source": null,
          "cheese_flavour_strength": null,
          "milk_type": null,
          "cheese_mould_ripened": null,
          "pasteurised": null,
          "desinewed_meat": null,
          "reformed": null,
          "skeletal_bones_present": null,
          "fried_during_manufacture": null,
          "skin_present": null,
          "closure_type": "",
          "cut_details": "",
          "modified_atmosphere_packaging": null
        },
        "hazard_controls": {
          "hazard_metal_detection": null,
          "hazard_optical_sorting": null,
          "hazard_sieving": null,
          "hazard_xray": null,
          "hazard_magnets": null,
          "hazard_filters": null
        },
        "organoleptics": {
          "organoleptic_appearance": "",
          "organoleptic_aroma": "",
          "organoleptic_taste": "",
          "organoleptic_texture": ""
        },
        "derived": [],
        "waste_packaging": {
          "inner_packaging_plastic_weight": 0,
          "inner_packaging_paper_cardboard_weight": 6,
          "inner_packaging_fibre_based_composite_weight": 0,
          "inner_packaging_aluminium_weight": 0,
          "inner_packaging_glass_weight": 0,
          "inner_packaging_steel_weight": 275,
          "inner_packaging_wood_weight": 0,
          "inner_packaging_other_weight": 0
        }
      }
    ],
    "waste_packaging": {
      "outer_packaging_plastic_weight": 228,
      "outer_packaging_paper_cardboard_weight": 800.5,
      "outer_packaging_fibre_based_composite_weight": 0,
      "outer_packaging_aluminium_weight": 0,
      "outer_packaging_glass_weight": 0,
      "outer_packaging_steel_weight": 0,
      "outer_packaging_wood_weight": 28000,
      "outer_packaging_other_weight": 0
    }
  }
}

Get Product by GTIN

get

Performs a lookup using the Outer GTIN (traded unit GTIN).

Authorizations
Path parameters
gtinstringRequired

The Outer GTIN of the product.

Example: 05010052076644
Responses
200Success
application/json
404Error
application/json
get
GET /v2/products/gtin/{gtin} HTTP/1.1
Host: api.erudus.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "data": {
    "erudus_id": "970654c94a29451f986ee66592ac378a",
    "standardised_name": "No Added Sugar Baked Beanz In Tomato Sauce 6x2.62kg",
    "status": "published",
    "version": "2.1",
    "changed_at": "2025-05-19 14:34:55",
    "latest_version": "2.1",
    "change_reason": null,
    "change_type": 2,
    "reviewed_at": "2025-05-19 14:34:55",
    "parent_id": null,
    "replaced_by": [],
    "codes": [],
    "general": {
      "manufacturer_product_name": "Heinz No Added Sugar Baked Beanz in Tomato Sauce (6) 2.62kg",
      "product_name": "No Added Sugar Baked Beanz in Tomato Sauce",
      "manufacturer": 222,
      "manufacturer_name": "H.J. Heinz",
      "label": 0,
      "label_name": null,
      "label_code": "",
      "brand": 0,
      "brand_name": "H.J. Heinz",
      "schema": "generic",
      "schema_name": "Generic",
      "manufacturer_product_code": "76009418",
      "product_description": "No added sugar Baked beans in a rich tomato sauce",
      "product_type": {
        "id": 1,
        "description": "Food"
      },
      "product_category": {
        "id": 52,
        "description": "Beans & Pulses"
      },
      "storage_type": {
        "id": 3,
        "description": "Ambient"
      },
      "manufacturer_address": null,
      "marketing_description": "",
      "day_code": "",
      "batch_code": "",
      "manufacturer_version_number": "",
      "effective_date": null
    },
    "outer": {
      "no_outer_present": null,
      "traded_unit_gtin": "05000157131515",
      "variable_inner_components": null,
      "consumer_units_per_traded": {
        "value": 6,
        "units": "Units"
      },
      "outer_case_gross_weight": {
        "value": 17.5,
        "units": "kg"
      },
      "outer_case_height": {
        "value": 152,
        "units": "mm"
      },
      "outer_case_depth": {
        "value": 470,
        "units": "mm"
      },
      "outer_case_net_weight": {
        "value": 15.7,
        "units": "kg"
      },
      "outer_case_width": {
        "value": 310,
        "units": "mm"
      },
      "trade_item_splittable": {
        "value": 0,
        "description": "No"
      },
      "value_added_tax_rate": null,
      "inner_packs_in_case": null
    },
    "inner_pack": {
      "inner_pack_height": null,
      "inner_pack_depth": null,
      "inner_pack_width": null,
      "inner_pack_gtin": "",
      "inner_pack_splittable": null,
      "inner_pack_gross_weight": null,
      "inner_pack_net_weight": null,
      "inner_components_in_pack": null,
      "inner_pack_product_code": ""
    },
    "safety_outer": {
      "product_health_warning": "",
      "age_restricted_product": null,
      "age_restriction": null
    },
    "pallet": {
      "non_palletised": {
        "value": 0,
        "description": "No"
      },
      "pallet_type": null,
      "pallet_gtin": "",
      "cases_per_pallet": {
        "value": 56,
        "units": "Cases"
      },
      "pallet_gross_weight": {
        "value": 1007,
        "units": "kg"
      },
      "pallet_height": {
        "value": 1.4,
        "units": "MTR"
      },
      "cases_per_pallet_layer": {
        "value": 7,
        "units": "Cases"
      },
      "layers_per_pallet": {
        "value": 8,
        "units": "Layers"
      }
    },
    "waste_outer": {
      "outer_packaging": [
        {
          "packaging_type": {
            "id": 4,
            "description": "Case"
          },
          "packaging_weight": 18,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 1,
            "description": "Plastic"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 4,
            "description": "Case"
          },
          "packaging_weight": 47,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 2,
            "description": "Paper/Cardboard"
          },
          "packaging_returnable": null
        }
      ],
      "transport_packaging": [
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 210,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 1,
            "description": "Plastic"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 753.5,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 2,
            "description": "Paper/Cardboard"
          },
          "packaging_returnable": null
        },
        {
          "packaging_type": {
            "id": 5,
            "description": "Other"
          },
          "packaging_weight": 28000,
          "recycled_plastic": null,
          "base_material_type": {
            "id": 7,
            "description": "Wood"
          },
          "packaging_returnable": null
        }
      ],
      "inner_pack_packaging": null
    },
    "logistics": {
      "max_shelf_life": {
        "value": 365,
        "units": "Days"
      },
      "shelf_life_from_opening": null,
      "shelf_life_exempt": null
    },
    "other": {
      "manufacturer_comments": ""
    },
    "components": [
      {
        "general": {
          "component_name": "",
          "component_uuid": "daedf3308f3c44d9bbbdd8e1592a16c6"
        },
        "origin": {
          "country_of_origin": [
            {
              "id": 18,
              "description": "United Kingdom"
            }
          ],
          "place_of_provenance": "",
          "country_of_origin_details": "n/a",
          "primary_ingredient_origin": [
            {
              "id": 20,
              "description": "Other"
            }
          ],
          "primary_ingredient_details": "confidential"
        },
        "accreditations": {
          "acc_asc": null,
          "acc_aoecs": null,
          "acc_bcorp": null,
          "acc_bap_cert": null,
          "acc_brcgs_certified": {
            "value": 1,
            "description": "Yes"
          },
          "acc_brcgs_agents_brokers": null,
          "acc_brcgs_ethical": null,
          "acc_brcgs_food_safety": null,
          "acc_brcgs_gluten_free": null,
          "acc_brcgs_packaging": null,
          "acc_brcgs_plant_based": null,
          "acc_brcgs_start": null,
          "acc_brcgs_storage_distribution": null,
          "acc_bbpa": null,
          "acc_bpi": null,
          "acc_british_lion": null,
          "acc_bmpa": null,
          "acc_clas": null,
          "acc_ethical_tea": null,
          "acc_fair_trade": null,
          "acc_fa_welsh_livestock": null,
          "acc_femas": null,
          "acc_food_for_life": null,
          "acc_fsc": null,
          "acc_fssc_22000": null,
          "acc_global_gap": null,
          "acc_iceland_responsible_fisheries": null,
          "acc_ifs_food_standard": null,
          "acc_iso_14001": null,
          "acc_iso_22000": null,
          "acc_iso_45001": null,
          "acc_iso_9001_2015": null,
          "acc_leaf": null,
          "acc_loop": null,
          "acc_mel_japan": null,
          "acc_msc": null,
          "acc_ni_beef_lamb_fqas": null,
          "acc_organic": null,
          "acc_quality_meat_scotland": null,
          "acc_rainforest": null,
          "acc_red_tractor": null,
          "acc_responsible_fisheries_management": null,
          "acc_rspo": null,
          "acc_rtrs": null,
          "acc_freedom_food": null,
          "acc_sqf": null,
          "acc_salsa": null,
          "acc_school_approved": null,
          "acc_sedex": null,
          "acc_siba": null,
          "acc_spec_cheese_assoc": null,
          "acc_vegan": null,
          "acc_vegetarian": null,
          "other_accreditation": ""
        },
        "inner_other": {
          "health_marks": "",
          "intrastat_taric": "",
          "commodity_code": "",
          "meursing_code": "",
          "not_for_eu": null
        },
        "additives": {
          "artificial_antioxidants": {
            "value": 0,
            "description": "No"
          },
          "artificial_colours": {
            "value": 0,
            "description": "No"
          },
          "artificial_flavour_enhancers": {
            "value": 0,
            "description": "No"
          },
          "artificial_flavourings": {
            "value": 0,
            "description": "No"
          },
          "artificial_preservatives": {
            "value": 0,
            "description": "No"
          },
          "artificial_sweeteners": {
            "value": 1,
            "description": "Yes"
          }
        },
        "allergens": {
          "contains_celery_celeriac": {
            "value": 0,
            "description": "No"
          },
          "contains_cereal": {
            "value": 0,
            "description": "No"
          },
          "contains_barley": {
            "value": 0,
            "description": "No"
          },
          "contains_oats": {
            "value": 0,
            "description": "No"
          },
          "contains_rye": {
            "value": 0,
            "description": "No"
          },
          "contains_wheat": {
            "value": 0,
            "description": "No"
          },
          "contains_crustacea": {
            "value": 0,
            "description": "No"
          },
          "contains_eggs": {
            "value": 0,
            "description": "No"
          },
          "contains_fish": {
            "value": 0,
            "description": "No"
          },
          "contains_lupin": {
            "value": 0,
            "description": "No"
          },
          "contains_milk": {
            "value": 0,
            "description": "No"
          },
          "contains_molluscs": {
            "value": 0,
            "description": "No"
          },
          "contains_mustard": {
            "value": 0,
            "description": "No"
          },
          "contains_tree_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_almond_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_brazil_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_cashew_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_hazelnut_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_macadamia_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_pecan_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_pistachio_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_walnut_nuts": {
            "value": 0,
            "description": "No"
          },
          "contains_peanuts": {
            "value": 0,
            "description": "No"
          },
          "contains_sesame_seeds": {
            "value": 0,
            "description": "No"
          },
          "contains_soybeans": {
            "value": 0,
            "description": "No"
          },
          "contains_celery_celeriac_risk_source": null,
          "contains_cereal_risk_source": null,
          "contains_barley_risk_source": null,
          "contains_oats_risk_source": null,
          "contains_rye_risk_source": null,
          "contains_wheat_risk_source": null,
          "contains_crustacea_risk_source": null,
          "contains_eggs_risk_source": null,
          "contains_fish_risk_source": null,
          "contains_lupin_risk_source": null,
          "contains_mustard_risk_source": null,
          "contains_milk_risk_source": null,
          "contains_molluscs_risk_source": null,
          "contains_tree_nuts_risk_source": null,
          "contains_almond_nuts_risk_source": null,
          "contains_brazil_nuts_risk_source": null,
          "contains_cashew_nuts_risk_source": null,
          "contains_hazelnut_nuts_risk_source": null,
          "contains_macadamia_nuts_risk_source": null,
          "contains_pecan_nuts_risk_source": null,
          "contains_pistachio_nuts_risk_source": null,
          "contains_walnut_nuts_risk_source": null,
          "contains_peanuts_risk_source": null,
          "contains_sesame_seeds_risk_source": null,
          "contains_soybeans_risk_source": null,
          "contains_sulphur_dioxide": {
            "value": 0,
            "description": "No"
          },
          "allergen_statement_on_pack": "",
          "additional_allergen_information": "",
          "contains_cereal_gluten_20ppm": null,
          "contains_wheat_gluten_20ppm": null,
          "contains_rye_gluten_20ppm": null,
          "contains_barley_gluten_20ppm": null,
          "contains_oats_gluten_20ppm": null,
          "contains_sulphur_dioxide_risk_source": null
        },
        "free_from": {
          "free_from_gluten": null,
          "free_from_wheat": null,
          "free_from_rye": null,
          "free_from_barley": null,
          "free_from_oats": null,
          "free_from_nuts": null,
          "free_from_celery": null,
          "free_from_crustacea": null,
          "free_from_eggs": null,
          "free_from_fish": null,
          "free_from_lupin": null,
          "free_from_mustard": null,
          "free_from_lactose": null,
          "free_from_milk": null,
          "free_from_molluscs": null,
          "free_from_peanuts": null,
          "free_from_sesame": null,
          "free_from_soybeans": null,
          "free_from_sulphur_dioxide": null,
          "very_low_gluten": null
        },
        "nutrients": {
          "traffic_light_labelling": null,
          "nutritional_data_exempt": null,
          "nutritional_information_source": null,
          "nutrition_units": {
            "id": 0,
            "description": "g"
          },
          "number_of_servings": null,
          "serving_size": null,
          "serving_details": "",
          "hfss_product": null,
          "hfss_score": null,
          "fibre_type": null,
          "chol_100": null,
          "trans_fats_100": null,
          "fat_percentage_dry_100": null,
          "non_milk_extrinsic_sugars_100": null,
          "non_milk_extrinsic_sugars_prepared": null,
          "nutrition_statements": "",
          "cal_100_kj": {
            "value": 267,
            "units": "kJ"
          },
          "cal_100_kcal": {
            "value": 63,
            "units": "kcal"
          },
          "fat_100": {
            "value": 0.2,
            "units": "g"
          },
          "sat_fat_100": {
            "value": 0.01,
            "units": "g"
          },
          "mono_fat_100": null,
          "poly_fat_100": null,
          "carb_100": {
            "value": 9.2,
            "units": "g"
          },
          "sugar_carb_100": {
            "value": 1.8,
            "units": "g"
          },
          "polyols_carb_100": null,
          "starch_carb_100": null,
          "fibre_100": {
            "value": 3.5,
            "units": "g"
          },
          "protein_100": {
            "value": 4.4,
            "units": "g"
          },
          "salt_100": {
            "value": 0.6,
            "units": "g"
          },
          "sodium_100": {
            "value": 240,
            "units": "mg"
          },
          "sugar_carb_serving": null,
          "vitamin_a_100": null,
          "vitamin_d_100": null,
          "vitamin_e_100": null,
          "vitamin_k_100": null,
          "vitamin_c_100": null,
          "thiamin_b1_100": null,
          "riboflavin_b2_100": null,
          "niacin_b3_100": null,
          "vitamin_b6_100": null,
          "folate_100": null,
          "vitamin_b12_100": null,
          "biotin_b7_100": null,
          "pantothenic_acid_100": null,
          "potassium_100": null,
          "chloride_100": null,
          "calcium_100": null,
          "phosphorus_100": null,
          "magnesium_100": null,
          "iron_100": null,
          "zinc_100": null,
          "copper_100": null,
          "manganese_100": null,
          "fluoride_100": null,
          "selenium_100": null,
          "chromium_100": null,
          "molybdenum_100": null,
          "iodine_100": null,
          "cal_kcal_serving": null,
          "cal_kj_serving": null,
          "calcium_serving": null,
          "carb_serving": null,
          "polyols_carb_serving": null,
          "starch_carb_serving": null,
          "fat_serving": null,
          "sat_fat_serving": null,
          "mono_fat_serving": null,
          "poly_fat_serving": null,
          "fibre_serving": null,
          "folate_serving": null,
          "iron_serving": null,
          "protein_serving": null,
          "salt_serving": null,
          "sodium_serving": null,
          "vitamin_a_serving": null,
          "vitamin_c_serving": null,
          "zinc_serving": null,
          "vitamin_d_serving": null,
          "vitamin_e_serving": null,
          "thiamin_b1_serving": null,
          "riboflavin_b2_serving": null,
          "niacin_b3_serving": null,
          "vitamin_b6_serving": null,
          "vitamin_b12_serving": null,
          "biotin_b7_serving": null,
          "pantothenic_acid_serving": null,
          "potassium_serving": null,
          "chloride_serving": null,
          "phosphorus_serving": null,
          "magnesium_serving": null,
          "copper_serving": null,
          "manganese_serving": null,
          "fluoride_serving": null,
          "selenium_serving": null,
          "iodine_serving": null,
          "vitamin_k_serving": null,
          "chromium_serving": null,
          "molybdenum_serving": null
        },
        "nutrients_prepared": {
          "prepared_product_portion_size": null,
          "prepared_product_details": "",
          "sugar_carb_prepared": null,
          "sugar_carb_prepared_100": null,
          "cal_kcal_prepared": null,
          "cal_kcal_prepared_100": null,
          "cal_kj_prepared": null,
          "cal_kj_prepared_100": null,
          "calcium_prepared": null,
          "calcium_prepared_100": null,
          "carb_prepared": null,
          "carb_prepared_100": null,
          "polyols_carb_prepared": null,
          "polyols_carb_prepared_100": null,
          "starch_carb_prepared": null,
          "starch_carb_prepared_100": null,
          "fat_prepared": null,
          "fat_prepared_100": null,
          "sat_fat_prepared": null,
          "sat_fat_prepared_100": null,
          "mono_fat_prepared": null,
          "mono_fat_prepared_100": null,
          "poly_fat_prepared": null,
          "poly_fat_prepared_100": null,
          "fibre_prepared": null,
          "fibre_prepared_100": null,
          "folate_prepared": null,
          "folate_prepared_100": null,
          "iron_prepared": null,
          "iron_prepared_100": null,
          "protein_prepared": null,
          "protein_prepared_100": null,
          "salt_prepared": null,
          "salt_prepared_100": null,
          "sodium_prepared": null,
          "sodium_prepared_100": null,
          "vitamin_a_prepared": null,
          "vitamin_a_prepared_100": null,
          "vitamin_c_prepared": null,
          "vitamin_c_prepared_100": null,
          "zinc_prepared": null,
          "zinc_prepared_100": null,
          "vitamin_d_prepared": null,
          "vitamin_d_prepared_100": null,
          "vitamin_e_prepared": null,
          "vitamin_e_prepared_100": null,
          "thiamin_b1_prepared": null,
          "thiamin_b1_prepared_100": null,
          "riboflavin_b2_prepared": null,
          "riboflavin_b2_prepared_100": null,
          "niacin_b3_prepared": null,
          "niacin_b3_prepared_100": null,
          "vitamin_b6_prepared": null,
          "vitamin_b6_prepared_100": null,
          "vitamin_b12_prepared": null,
          "vitamin_b12_prepared_100": null,
          "biotin_b7_prepared": null,
          "biotin_b7_prepared_100": null,
          "pantothenic_acid_prepared": null,
          "pantothenic_acid_prepared_100": null,
          "potassium_prepared": null,
          "potassium_prepared_100": null,
          "chloride_prepared": null,
          "chloride_prepared_100": null,
          "phosphorus_prepared": null,
          "phosphorus_prepared_100": null,
          "magnesium_prepared": null,
          "magnesium_prepared_100": null,
          "copper_prepared": null,
          "copper_prepared_100": null,
          "manganese_prepared": null,
          "manganese_prepared_100": null,
          "fluoride_prepared": null,
          "fluoride_prepared_100": null,
          "selenium_prepared": null,
          "selenium_prepared_100": null,
          "iodine_prepared": null,
          "iodine_prepared_100": null,
          "vitamin_k_prepared": null,
          "vitamin_k_prepared_100": null,
          "chromium_prepared": null,
          "chromium_prepared_100": null,
          "molybdenum_prepared": null,
          "molybdenum_prepared_100": null
        },
        "ingredients": {
          "ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract",
          "ingredients_statements": "",
          "contains_gm_protein": {
            "value": 0,
            "description": "No"
          },
          "contains_hydro_veg": {
            "value": 0,
            "description": "No"
          },
          "contains_palm_oil": {
            "value": 0,
            "description": "No"
          },
          "alcohol_strength_per_vol": null,
          "cbd_concentration": null,
          "formatted_ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract",
          "plaintext_ingredients": "Beans (47%), Tomatoes (38%), Water, Modified Cornflour, Spirit Vinegar, Salt, Natural Flavouring, Spice Extracts, Sweetener - Steviol Glycosides, Herb Extract"
        },
        "diets": {
          "vegan_suitable": {
            "id": 1,
            "description": "Suitable for"
          },
          "vegetarian_suitable": {
            "id": 1,
            "description": "Suitable for"
          },
          "halal_suitable": {
            "id": 0,
            "description": "No"
          },
          "kosher_suitable": {
            "id": 0,
            "description": "No"
          }
        },
        "handling": {
          "directions_for_use": "COOKING INSTRUCTIONS\r\nHOB:  Empty contents into a suitable sized saucepan, Heinz Beanz kettle or bain-marie.  Gently stir occasionally whilst heating.  Do not boil, overcook or add water, as this will impair the flavour.\r\nMICROWAVE (1725w):  Empty contents into a suitable microwaveable container.  Cover and heat on full power for 4 minutes.  Stir thoroughly, re-cover, then heat for a further 4 minutes on full power or until hot.  If microwave wattage is different to above, please refer to manufacurer's instructions.",
          "storage_instructions": "Empty unused contents into a suitable covered container.  Keep refrigerated and use within 2 days.",
          "storage_instructions_after_opening": "",
          "shelf_life_once_defrosted": null
        },
        "inner": {
          "no_inner_component_present": null,
          "internal_gtin": "5000157078933",
          "inner_component_diameter": null,
          "inner_component_weight": {
            "value": 2.62,
            "units": "kg",
            "units_id": 1
          },
          "inner_component_volume": null,
          "inner_component_depth": {
            "value": 155,
            "units": "mm"
          },
          "inner_component_width": {
            "value": 155,
            "units": "mm"
          },
          "inner_component_height": {
            "value": 152,
            "units": "mm"
          },
          "net_drained_weight": null,
          "variable_weight_consumer_item": {
            "value": 0,
            "description": "No"
          },
          "count_per_inner_component": null,
          "e_mark": null,
          "manufacturers_component_code": ""
        },
        "waste_inner": {
          "inner_packaging": [
            {
              "packaging_type": {
                "id": 2,
                "description": "Can"
              },
              "packaging_weight": 6,
              "recycled_plastic": null,
              "base_material_type": {
                "id": 2,
                "description": "Paper/Cardboard"
              },
              "packaging_returnable": null
            },
            {
              "packaging_type": {
                "id": 2,
                "description": "Can"
              },
              "packaging_weight": 275,
              "recycled_plastic": null,
              "base_material_type": {
                "id": 6,
                "description": "Steel"
              },
              "packaging_returnable": null
            }
          ]
        },
        "characteristics": {
          "micro_trend_analysis": {
            "value": 1,
            "description": "Yes"
          },
          "shelf_life_testing": {
            "value": 1,
            "description": "Yes"
          },
          "commercially_sterile": null
        },
        "supplementary_information": {
          "cheese_format": null,
          "egg_source": null,
          "cheese_flavour_strength": null,
          "milk_type": null,
          "cheese_mould_ripened": null,
          "pasteurised": null,
          "desinewed_meat": null,
          "reformed": null,
          "skeletal_bones_present": null,
          "fried_during_manufacture": null,
          "skin_present": null,
          "closure_type": "",
          "cut_details": "",
          "modified_atmosphere_packaging": null
        },
        "hazard_controls": {
          "hazard_metal_detection": null,
          "hazard_optical_sorting": null,
          "hazard_sieving": null,
          "hazard_xray": null,
          "hazard_magnets": null,
          "hazard_filters": null
        },
        "organoleptics": {
          "organoleptic_appearance": "",
          "organoleptic_aroma": "",
          "organoleptic_taste": "",
          "organoleptic_texture": ""
        },
        "derived": [],
        "waste_packaging": {
          "inner_packaging_plastic_weight": 0,
          "inner_packaging_paper_cardboard_weight": 6,
          "inner_packaging_fibre_based_composite_weight": 0,
          "inner_packaging_aluminium_weight": 0,
          "inner_packaging_glass_weight": 0,
          "inner_packaging_steel_weight": 275,
          "inner_packaging_wood_weight": 0,
          "inner_packaging_other_weight": 0
        }
      }
    ],
    "waste_packaging": {
      "outer_packaging_plastic_weight": 228,
      "outer_packaging_paper_cardboard_weight": 800.5,
      "outer_packaging_fibre_based_composite_weight": 0,
      "outer_packaging_aluminium_weight": 0,
      "outer_packaging_glass_weight": 0,
      "outer_packaging_steel_weight": 0,
      "outer_packaging_wood_weight": 28000,
      "outer_packaging_other_weight": 0
    }
  }
}
  • GETList Products
  • GETGet Product
  • GETGet Product by GTIN