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.
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 MarketplaceFollow these steps to integrate with the Marijuana Framework SDK:
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.
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
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.
GET https://api.marijuanaframework.com/facilities/List?username=cCNjJA
[
{
"name": "AK LOFTY ESTABLISHMENT, LLC",
"alias": "OK Dispensary B",
"displayName": "OK Dispensary B",
"license": {
"number": "3c-X0002",
"licenseType": "Medical Dispensary"
}
}
]