21+ only · Hemp-derived · Free shipping $100+ · Ships to 23 states + DC

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

GET https://leaftekdistributions.com/api/shipping-availability.json

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

FieldTypeMeaning
updatedAtISO-8601 stringLast time the policy file was refreshed.
productstringAlways thca-flower. Other product lines may get their own endpoints.
policyVersionstringDate-stamped policy version. Bumped on every counsel review.
allowedStatesstring[]USPS state codes we currently ship to.
blockedStatesstring[]USPS state codes we do not currently ship to.
conditionalStatesobjectState code → free-text note for states where the rules are evolving and shippers should read the fine print.
notesstringPlain-English summary of the overall regulatory posture.
reviewCadencestringHow often the file is reviewed (weekly automated + quarterly counsel).
referenceDocstringPath 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.

ite.js">