AI QR codes
GET https://qrcodemaken.nl/api/ai-qr-codes/
curl --request GET \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
Parameters | Details | Beschrijving |
---|---|---|
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": "Example name",
"ai_qr_code": "https://qrcodemaken.nl/uploads/ai_qr_codes/example.png",
"content": "https://qrcodemaken.nl/",
"prompt": "Natuurscène bij zonsondergang, waterval, wilde dieren en zonnestralen"
"embedded_data": "https://qrcodemaken.nl/",
"embedded_data": "https://example.com",
"last_datetime": null,
"datetime": "2025-02-22 07:56:14"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://qrcodemaken.nl/api/ai-qr-codes?&page=1",
"last": "https://qrcodemaken.nl/api/ai-qr-codes?&page=1",
"next": null,
"prev": null,
"self": "https://qrcodemaken.nl/api/ai-qr-codes?&page=1"
}
}
GET https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Example name",
"ai_qr_code": "https://qrcodemaken.nl/uploads/ai_qr_codes/example.png",
"content": "https://qrcodemaken.nl/",
"prompt": "Natuurscène bij zonsondergang, waterval, wilde dieren en zonnestralen"
"embedded_data": "https://qrcodemaken.nl/",
"last_datetime": null,
"datetime": "2025-02-22 07:56:14"
}
}
POST https://qrcodemaken.nl/api/ai-qr-codes
Parameters | Details | Beschrijving |
---|---|---|
link_id | Optional Integer | - |
project_id | Optional Integer | - |
name | Required String | - |
content | Required String | - |
prompt | Required String | - |
Parameters | Details | Beschrijving |
---|---|---|
curl --request POST \
--url 'https://qrcodemaken.nl/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Natuurscène bij zonsondergang, waterval, wilde dieren en zonnestralen' \
--form 'content=https://qrcodemaken.nl/' \
--url 'https://qrcodemaken.nl/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Natuurscène bij zonsondergang, waterval, wilde dieren en zonnestralen' \
--form 'content=https://qrcodemaken.nl/' \
{
"data": {
"id": 1
}
}
POST https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}
Parameters | Details | Beschrijving |
---|---|---|
link_id | Optional Integer | - |
project_id | Optional String | - |
name | Optional String | - |
content | Optional String | - |
prompt | Optional String | - |
curl --request POST \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Las Vegas' \
{
"data": {
"id": 1
}
}
DELETE https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://qrcodemaken.nl/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \