diff --git a/paper-api/src/main/java/org/bukkit/inventory/meta/SuspiciousStewMeta.java b/paper-api/src/main/java/org/bukkit/inventory/meta/SuspiciousStewMeta.java
new file mode 100644
index 000000000..c2f4282c1
--- /dev/null
+++ b/paper-api/src/main/java/org/bukkit/inventory/meta/SuspiciousStewMeta.java
@@ -0,0 +1,67 @@
+package org.bukkit.inventory.meta;
+
+import java.util.List;
+import org.bukkit.potion.PotionEffect;
+import org.bukkit.potion.PotionEffectType;
+import org.jetbrains.annotations.NotNull;
+
+/**
+ * Represents a suspicious stew that can have custom effects.
+ */
+public interface SuspiciousStewMeta extends ItemMeta {
+
+ /**
+ * Checks for the presence of custom potion effects.
+ *
+ * @return true if custom potion effects are applied
+ */
+ boolean hasCustomEffects();
+
+ /**
+ * Gets an immutable list containing all custom potion effects applied to
+ * this suspicious stew.
+ *
+ * Plugins should check that hasCustomEffects() returns true before calling
+ * this method.
+ *
+ * @return the immutable list of custom potion effects
+ */
+ @NotNull
+ List getCustomEffects();
+
+ /**
+ * Adds a custom potion effect to this suspicious stew.
+ *
+ * @param effect the potion effect to add
+ * @param overwrite true if any existing effect of the same type should be
+ * overwritten
+ * @return true if the suspicious stew meta changed as a result of this call
+ */
+ boolean addCustomEffect(@NotNull PotionEffect effect, boolean overwrite);
+
+ /**
+ * Removes a custom potion effect from this suspicious stew.
+ *
+ * @param type the potion effect type to remove
+ * @return true if the suspicious stew meta changed as a result of this call
+ */
+ boolean removeCustomEffect(@NotNull PotionEffectType type);
+
+ /**
+ * Checks for a specific custom potion effect type on this suspicious stew.
+ *
+ * @param type the potion effect type to check for
+ * @return true if the suspicious stew has this effect
+ */
+ boolean hasCustomEffect(@NotNull PotionEffectType type);
+
+ /**
+ * Removes all custom potion effects from this suspicious stew.
+ *
+ * @return true if the suspicious stew meta changed as a result of this call
+ */
+ boolean clearCustomEffects();
+
+ @Override
+ SuspiciousStewMeta clone();
+}