Marijuana Framework

The Marijuana Framework METRC Link SDK is your ultimate tool for seamless METRC integration. Designed specifically for cannabis businesses and developers, our API provides all the necessary tools to streamline compliance, automate workflows, and build scalable applications.

What You Can Manage with This SDK

Facilities: Retrieve details about licensed cannabis facilities, including licensing information and operational status.
Products: Manage cannabis product data, including strain information, product types, and inventory tracking.
Lab Tests: Access lab test results for potency, contaminants, and compliance verification.
Locations: Organize and manage facility locations for proper inventory tracking.
Packages: Track and manage cannabis product packages, transfers, and inventory compliance.
Sales: Record and monitor sales transactions, ensuring regulatory compliance for dispensaries.
Strains: Maintain a database of cannabis strains, including genetic lineage and properties.
Tags: Retrieve and manage plant and package tags for state-mandated tracking.
Units of Measure: Standardize cannabis measurements across all transactions.

Get started today and take your cannabis business to the next level with the Marijuana Framework METRC Link API!

Visit Developer Portal Purchase on Azure Marketplace

Getting Started

Follow these steps to integrate with the Marijuana Framework SDK:

  1. Subscribe to the API in the Azure Marketplace.
  2. Create your account in the Developer Portal.
  3. View your subscription to retrieve your OcpApimSubscriptionKey.
  4. Download the Marijuana Framework SDK from GitHub and follow the instructions to connect your project to METRC.

Code Examples

Our SDK allows you to write code in your language of choice to integrate seamlessly with METRC. Below is an example of how you can use VB.NET to retrieve facility data.

VB.NET Example

Dim connection As New MetrcConnection(OcpApimSubscriptionKey, userName, password, metrcState, licenseNumber)
Dim FacilityResponse = Await connection.Facilities.GetFacilities()
For Each facility As FacilityResponse In FacilityResponse
    Console.WriteLine($"Facility License: {facility.License.Number}, Facility Name: {facility.Name}")
Next

Using the API Directly

You can also interface with the Marijuana Framework API directly for maximum control and flexibility. Below is an example API call and the expected response.

Example API Call

GET https://api.marijuanaframework.com/facilities/List?username=cCNjJA

Example Response

[
    {
        "name": "AK LOFTY ESTABLISHMENT, LLC",
        "alias": "OK Dispensary B",
        "displayName": "OK Dispensary B",
        "license": {
            "number": "3c-X0002",
            "licenseType": "Medical Dispensary"
        }
    }
]