Developer docs
Shipping availability API.
A small public JSON feed of the states where LeafTek currently ships hemp-derived THCa flower, plus per-state policy notes and the review cadence. Use this if you're building a marketplace, age-gate, ZIP-aware checkout, or affiliate integration.
Cost: free. Auth: none. Rate limit: be reasonable. No SLA — this is a courtesy feed.
Endpoint
Returns the current list of states we ship to, the current list of restricted states, conditional notes for states on the edge, the policy version (refreshed every Sunday), and a reference to the underlying research doc.
Example response
Fetched live at page load — this is the actual current payload, not a hand-typed sample:
Loading…
If the snippet above fails to load, the file is still available directly: /api/shipping-availability.json
Field reference
| Field | Type | Meaning |
|---|---|---|
| updatedAt | ISO-8601 string | Last time the policy file was refreshed. |
| product | string | Always thca-flower. Other product lines may get their own endpoints. |
| policyVersion | string | Date-stamped policy version. Bumped on every counsel review. |
| allowedStates | string[] | USPS state codes we currently ship to. |
| blockedStates | string[] | USPS state codes we do not currently ship to. |
| conditionalStates | object | State code → free-text note for states where the rules are evolving and shippers should read the fine print. |
| notes | string | Plain-English summary of the overall regulatory posture. |
| reviewCadence | string | How often the file is reviewed (weekly automated + quarterly counsel). |
| referenceDoc | string | Path to the long-form compliance research doc. |
Quickstart
JavaScript (fetch)
const res = await fetch('https://leaftekdistributions.com/api/shipping-availability.json');
const data = await res.json();
if (data.allowedStates.includes('TX')) {
/* Texas is shippable today. */
}
if (data.conditionalStates['TX']) {
/* …but read the conditional note before launching a campaign. */
console.warn(data.conditionalStates['TX']);
}
curl
curl -sS https://leaftekdistributions.com/api/shipping-availability.json \ | jq '.allowedStates'
Disclaimers
This feed is published in good faith from our internal compliance research. It is not legal advice. Statutes change quickly in this industry — always confirm with your own counsel before relying on it for high-volume distribution. We refresh weekly and version-stamp every payload so you can detect changes.
Questions? Reach out at sales@leaftekdistributions.com.