KI QR-Codes

GET https://7pxl.de/api/ai-qr-codes/
curl --request GET \
--url 'https://7pxl.de/api/ai-qr-codes/' \
--header 'Authorization: Bearer {api_key}' \
Parameter Details Beschreibung
page Optional Ganzzahl Die Seitennummer, von der Sie Ergebnisse erhalten möchten. Standardmäßig 1.
results_per_page Optional Ganzzahl Wie viele Ergebnisse Sie pro Seite erhalten möchten. Erlaubte Werte sind: 10 , 25 , 50 , 100 , 250 , 500 , 1000. Standardmäßig 25.
{
    "data": [
        {
            "id": 1,
            "name": "Example name",
            "ai_qr_code": "https://7pxl.de/uploads/ai_qr_codes/example.png",
            "content": "https://7pxl.de/",
            "prompt": "Naturszenerie bei Sonnenuntergang, Wasserfall, wilde Tiere und Sonnenstrahlen"
            "embedded_data": "https://7pxl.de/",
            "embedded_data": "https://example.com",
            "last_datetime": null,
            "datetime": "2025-10-21 04:54:19",
        },
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://7pxl.de/api/ai-qr-codes?page=1",
        "last": "https://7pxl.de/api/ai-qr-codes?page=1",
        "next": null,
        "prev": null,
        "self": "https://7pxl.de/api/ai-qr-codes?page=1"
    }
}
GET https://7pxl.de/api/ai-qr-codes/{ai_qr_code_id}
curl --request GET \
--url 'https://7pxl.de/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \
{
    "data": {
        "id": 1,
        "name": "Example name",
        "ai_qr_code": "https://7pxl.de/uploads/ai_qr_codes/example.png",
        "content": "https://7pxl.de/",
        "prompt": "Naturszenerie bei Sonnenuntergang, Wasserfall, wilde Tiere und Sonnenstrahlen"
        "embedded_data": "https://7pxl.de/",
        "last_datetime": null,
        "datetime": "2025-10-21 04:54:19",
    }
}
POST https://7pxl.de/api/ai-qr-codes
Parameter Details Beschreibung
link_id Optional Ganzzahl -
project_id Optional Ganzzahl -
name Erforderlich String -
content Erforderlich String -
prompt Erforderlich String -
Parameter Details Beschreibung
curl --request POST \
--url 'https://7pxl.de/api/ai-qr-codes' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=New York' \
--form 'prompt=Naturszenerie bei Sonnenuntergang, Wasserfall, wilde Tiere und Sonnenstrahlen' \
--form 'content=https://7pxl.de/' \
{
    "data": {
        "id": 1
    }
}
POST https://7pxl.de/api/ai-qr-codes/{ai_qr_code_id}
Parameter Details Beschreibung
link_id Optional Ganzzahl -
project_id Optional String -
name Optional String -
content Optional String -
prompt Optional String -
curl --request POST \
--url 'https://7pxl.de/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://7pxl.de/api/ai-qr-codes/{ai_qr_code_id}
curl --request DELETE \
--url 'https://7pxl.de/api/ai-qr-codes/{ai_qr_code_id}' \
--header 'Authorization: Bearer {api_key}' \