Resolve Specs
Endpoints
Verify Pot Sizes
Unified endpoint for resolving plant specifications. Accepts input as: (1) JSON body with items array, (2) JSON body with file_url from TUS upload, or (3) multipart form-data with direct file upload. Supported file formats: JSON, XLSX, XLS, PDF, TXT, PNG, JPG, JPEG, GIF, WEBP. Authentication: Basic/Pro plans use X-API-Key header; Teams plans with platform integration require Authorization Bearer token.
POST
Resolve Specs
Classify plant pot sizes and specifications using Growth Equivalent logic. Maps raw text labels to a stage of maturity (0-5) to determine if items are swappable.
Basic/Pro plans can use direct API key authentication for all input methods including direct file upload.
Teams plans with platform integration require a delegation token obtained via
Input Options
This endpoint accepts input in three ways:1. JSON Body with Items Array
2. JSON Body with File URL (TUS Upload)
For files uploaded via TUS protocol:3. Direct File Upload (Multipart)
Upload files directly without TUS - reduces round trips for Basic/Pro plans:Request Body (JSON)
An array of raw plant specification strings to be resolved. Takes precedence over file inputs.
URL to a previously uploaded file (from TUS storage). Must be from
secure.superseeded.ai or api.superseeded.ai.Tip: You can use the file input dialog in this playground to test with a local file.Optional filename hint for format detection when using
file_url.What to extract from files:
pot_sizes, species, or generic.Form Fields (Multipart)
Direct file upload. Supported formats: JSON, XLSX, XLS, PDF, TXT, PNG, JPG, JPEG, GIF, WEBP.
What to extract from the file.
Authentication
| Plan | Auth Method | Header |
|---|---|---|
| Basic/Pro | API Key | X-API-Key: sk_... |
| Teams (platform) | Delegation Token | Authorization: Bearer <token> |
POST /v1/auth/delegate-upload. This ensures each request is attributed to the correct merchant for billing.
Supported File Formats
| Format | Extensions | Processing |
|---|---|---|
| JSON | .json | Direct parsing of items array |
| Excel | .xlsx, .xls | Text extraction from cells |
.pdf | Text extraction | |
| Text | .txt | Direct text processing |
| Images | .png, .jpg, .jpeg, .gif, .webp | AI vision extraction |
Authorizations
Standard API Key authentication.
Body
Object containing a list of raw spec strings to be resolved, file reference, or direct file upload.
Response
Successful resolution with detailed hierarchy data.

