The pot size validation API uses “Growth Equivalent” logic to map raw container labels (like “400mm AS” or “20L Planter Bag”) to standardized maturity stages.Documentation Index
Fetch the complete documentation index at: https://api.superseeded.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
The problem
Legacy systems rely on exact string matching. This affects the supply chain because:- Units differ: Litres (Volume) vs. Millimeters (Diameter).
- Formats differ: “Pot”, “Bag”, “Tubestock”, “Planter Bag”.
- Abbreviations are common: “AS” (Air Slot), “RP” (Root Pruning), “XG” (Ex-Ground).
The solution: Growth equivalents
When you send a list of strings to/v1/verify/pot-sizes, the API maps them to a stage of maturity (0-5). This allows you to determine if two items are swappable.
The maturity hierarchy
| Stage | Name | Examples | Substitution logic |
|---|---|---|---|
| 0 | Genetic | Seeds, Tissue Culture | Not a plant yet. |
| 1 | Propagation | Jiffy, Plugs, Cuttings | Production inputs. High transplant risk. |
| 2 | Liners | Tubes, Cell Trays, Punnets | Stackable freight. “Potting up” stock. |
| 3 | Retail | 140mm - 300mm Pots | Standard rigid containers. Pallet freight. |
| 4 | Advanced | 45L Bags, Air Pots | Landscape construction stock. |
| 5 | Mature | Ex-Ground, 100L+ | Heavy machinery required. |
Additional metadata
The API returns metadata for logistics and risk management.1. Logistics information
The API flags freight constraints.Scenario: A “Standard Tube” is flagged asis_stackable: true. A “200mm Pot” isis_stackable: false. Value: Applications can calculate that shipping 1,000 tubes is less expensive than shipping 1,000 pots.
2. Quality and risk profiles
The API provides information on handling and perishability.Scenario: You validate a “Bare Root” tree. Response: The API returnstransplant_shock_risk: "High"andseasonal_restriction: "Winter Only". Value: You can display a warning in your UI: “Warning: This item is perishable and only available in Winter.”

