We’ve got big news See details →

AI QR Codes

GET https://sqr.co/api/ai-qr-codes/
curl --request GET \
--url 'https://sqr.co/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
Parameter Details Beschreibung
page Optional Integer Die gewünschte Seitenzahl. Standard ist 1.
results_per_page Optional Integer Wie viele Ergebnisse pro Seite. Erlaubte Werte: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standard ist 25.
{
    "data": [
        {
            "id": 1,
            "name": "Example name",
            "ai_qr_code": "https://sqr.co/uploads/ai_qr_codes/example.png",
            "content": "https://sqr.co/",
            "prompt": "Natürliche Landschaft bei Sonnenuntergang, Wasserfall, Wildtiere und Sonnenstrahlen"
            "embedded_data": "https://sqr.co/",
            "embedded_data": "https://example.com",
            "last_datetime": null,
            "datetime": "2025-11-28 06:51:26",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://sqr.co/api/ai-qr-codes?page=1",
        "last": "https://sqr.co/api/ai-qr-codes?page=1",
        "next": null,
        "prev": null,
        "self": "https://sqr.co/api/ai-qr-codes?page=1"
    }
}
GET https://sqr.co/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://sqr.co/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Example name",
        "ai_qr_code": "https://sqr.co/uploads/ai_qr_codes/example.png",
        "content": "https://sqr.co/",
        "prompt": "Natürliche Landschaft bei Sonnenuntergang, Wasserfall, Wildtiere und Sonnenstrahlen"
        "embedded_data": "https://sqr.co/",
        "last_datetime": null,
        "datetime": "2025-11-28 06:51:26",
    }
}
POST https://sqr.co/api/ai-qr-codes
Parameter Details Beschreibung
link_id Optional Integer -
project_id Optional Integer -
name Erforderlich String -
content Erforderlich String -
prompt Erforderlich String -
Parameter Details Beschreibung
curl --request POST \
--url 'https://sqr.co/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Natürliche Landschaft bei Sonnenuntergang, Wasserfall, Wildtiere und Sonnenstrahlen' \
--form 'content=https://sqr.co/' \
{
    "data": {
        "id": 1
    }
}
POST https://sqr.co/api/ai-qr-codes/{ai_qr_code_id}
Parameter Details Beschreibung
link_id Optional Integer -
project_id Optional String -
name Optional String -
content Optional String -
prompt Optional String -
curl --request POST \
--url 'https://sqr.co/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://sqr.co/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://sqr.co/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \