Skip to main content
POST
/
resolve
/
specs
Resolve Specs
curl --request POST \
  --url https://api.superseeded.com/v1/resolve/specs \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "items": [
    "140mm",
    "400mm AS",
    "20L Bag",
    "Ex-Ground"
  ]
}
'
{
  "results": [
    {
      "input_label": "400mm AS",
      "match_confidence": "High",
      "standard_data": {
        "type": "Pot - Air Pruning",
        "stage_order": 4,
        "stage_name": "Advanced Production",
        "is_biological": true,
        "matching_strategy": "Volume",
        "logistics": {
          "tier": "Pallet",
          "is_stackable": false,
          "freight_efficiency": "Medium"
        },
        "quality_profile": {
          "transplant_shock_risk": "Very Low",
          "seasonal_restriction": "None",
          "inspection_focus": "Desiccation"
        },
        "customer_note": "Superior root structure; requires more frequent watering until planted."
      }
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Standard API Key authentication.

Body

application/json

List of raw spec strings to be resolved.

items
string[]
required

An array of raw strings representing pot sizes or plant states.

Example:
["140mm", "400mm AS", "20L Bag", "Ex-Ground"]

Response

Successful resolution with detailed hierarchy data.

results
object[]