Integrator Guide
A series of Weedmaps resources must be retrieved and created with this API to integrate your platform. This guide will take you through each step in the process. Along the way, we will use the API Reference to generate cURL commands which, when run in your terminal, will perform the necessary API requests.
Here is an example of what the generated cURL command would look like for listing available Categories:
curl --request GET \
--url "https://api-g.weedmaps.com/wm/v1/tag_groups" \
--header 'accept: application/json' \
--header 'authorization: Bearer ACCESS TOKEN HERE'
{
"data": [
{
"id": "7e4f2b3b-8dbc-4287-9fed-02b8dbdd5a51",
"type": "category",
"name": "Infused Flower",
"slug": "infused-flower",
"parent_id": "a78926ca-39e7-49c0-881b-cf0641427f14",
"group_name": "Flower Type",
"mutually_exclusive": true
},
{
"id": "90e5f173-ed24-4bea-afa8-306abf801ded",
"type": "category",
"name": "Concentrates",
"slug": "concentrates",
"parent_id": null,
"group_name": "Main Categories",
"mutually_exclusive": true
},
{
"id": "36829114-e343-4644-adb6-6f94ca36d77d",
"type": "category",
"name": "Budder",
"slug": "budder",
"parent_id": "90e5f173-ed24-4bea-afa8-306abf801ded",
"group_name": "Texture",
"mutually_exclusive": true
},
{
"id": "2ffc1ba7-6894-469a-859e-23c65b29d6cb",
"type": "category",
"name": "Shatter",
"slug": "shatter",
"parent_id": "90e5f173-ed24-4bea-afa8-306abf801ded",
"group_name": "Texture",
"mutually_exclusive": true
},
{
"id": "a78926ca-39e7-49c0-881b-cf0641427f14",
"type": "category",
"name": "Flower",
"slug": "flower",
"parent_id": null,
"group_name": "Main Categories",
"mutually_exclusive": true
}
]
}
Updated 4 months ago