Strains
Operations and Schemas
Strains are varieties of cannabis plants. Each strain brings its own mix of flavors, aromas, and effects. Like wine varieties, strains have their own combination of compounds (like THC and CBD) and aromatic elements called terpenes.
The makeup of each plant determines how the weed strain is classified — indica, sativa, or hybrid. Skilled breeders and growers craft these cannabis plants to have a specific taste, smell, look, and effect — from mood-lifting motivation to couch-lock relaxation.
Want to learn how to Link a Strain to a Menu Item?
Operations
You can explore available Strains with these operations:
Method | Description | Try It! |
---|---|---|
GET | Retrieve all Strains | Retrieve Strains |
You can utilize the many
filters
parameters on these operation for search and discovery.
Schemas
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Strain",
"description": "A cannabis strain with its unique identifier, name, and last update timestamp",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for the strain"
},
"name": {
"type": "string",
"description": "Human‑readable name of the strain"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "ISO 8601 timestamp of when this strain record was last updated"
}
},
"required": [
"id",
"name",
"updated_at"
],
"additionalProperties": false
}
{
"id": 121,
"name": "Gorilla Dream",
"updated_at": "2023-10-19T19:14:37Z",
}
Updated 3 days ago