🔥 Lifetime Deal
Unlimited QR codes, forever —
$199 $79
One-time payment, no renewals
⚡ 23 spots remaining
Ends in
--hrs
:
--min
:
--sec
Grab the Deal →
Install our app 🪄 click on the icon in the top right of the address bar

Projects

GET https://qrcodemonkey.net/api/projects/
curl --request GET \
--url 'https://qrcodemonkey.net/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
Parameters Details Description
search Optional String The search string
search_by Optional String What field are you searching by. Allowed values are: name
order_by Optional String What field to order the results by. Allowed values are: project_id , datetime , last_datetime , name
order_type Optional String The ordering of the results. Allowed values are: ASC for ascending ordering, and DESC for descending ordering
page Optional Integer The page number that you want results from. Defaults to 1
results_per_page Optional Integer How many results you want per page. Allowed values are: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Defaults to 25
{
    "data": [
        {
            "id": 1,
            "name": "Development",
            "color": "#0e23cc",
            "last_datetime": null,
            "datetime": "2026-04-12 18:17:24",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://qrcodemonkey.net/api/projects?page=1",
        "last": "https://qrcodemonkey.net/api/projects?page=1",
        "next": null,
        "prev": null,
        "self": "https://qrcodemonkey.net/api/projects?page=1"
    }
}
GET https://qrcodemonkey.net/api/projects/{project_id}
curl --request GET \
--url 'https://qrcodemonkey.net/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Development",
        "color": "#0e23cc",
        "last_datetime": null,
        "datetime": "2026-04-12 18:17:24",
    }
}
POST https://qrcodemonkey.net/api/projects
Parameters Details Description
name Required String -
color Optional String -
curl --request POST \
--url 'https://qrcodemonkey.net/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#ffffff' \
{
    "data": {
        "id": 1
    }
}
POST https://qrcodemonkey.net/api/projects/{project_id}
Parameters Details Description
name Optional String -
color Optional String -
curl --request POST \
--url 'https://qrcodemonkey.net/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#000000' \
{
    "data": {
        "id": 1
    }
}
DELETE https://qrcodemonkey.net/api/projects/{project_id}
curl --request DELETE \
--url 'https://qrcodemonkey.net/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \