Zum Inhalt springen
API-Dokumentation

vCard-Karten

Digitale Visitenkarten, .vcf-Export und öffentliche Seite.

Authentifizierung
Jeder Request muss den Authorization-Header mit einem Bearer-Token senden, der dem Admin-API-Schlüssel entspricht. API-Schlüssel abrufen.
API-Dokumentation

Endpunkt
GET https://rqrcode.com/api/vcards/
Beispiel
curl --request GET \
--url 'https://rqrcode.com/api/vcards/' \
--header 'Authorization: Bearer {api_key}'
Parameter
Parameter Weitere Details Beschreibung
page
Optionales Feld ui.admin.api_docs.common.types.Ganzzahl
Die Seitennummer, für die Sie die Ergebnisse erhalten möchten. Standardmäßig 1.
results_per_page
Optionales Feld ui.admin.api_docs.common.types.Ganzzahl
Wie viele Ergebnisse Sie pro Seite möchten. Erlaubte Werte sind: 10, 25, 50, 100, 250, 500, 1000. Standardmäßig 25.
Antwortbeispiel
{
    "data": [
        {
            "id": 1,
            "project_id": null,
            "qr_code_id": 10,
            "name": "Max Mustermann",
            "slug": "john-doe",
            "public_url": "https://rqrcode.com/vcard/john-doe",
            "stable_url": "https://rqrcode.com/vcard/r/1",
            "vcf_url": "https://rqrcode.com/vcard/john-doe/contact.vcf",
            "company": "Rqrcode",
            "job_title": "Marketing",
            "pageviews": 42,
            "scans": 8,
            "vcf_downloads": 3,
            "is_enabled": true,
            "datetime": "2026-04-20 07:55:35"
        }
    ],
    "meta": {
        "page": 1,
        "results_per_page": 25,
        "total": 1,
        "total_pages": 1
    },
    "links": {
        "first": "https://rqrcode.com/api/vcards?page=1",
        "last": "https://rqrcode.com/api/vcards?page=1",
        "next": null,
        "prev": null,
        "self": "https://rqrcode.com/api/vcards?page=1"
    }
}

Endpunkt
GET https://rqrcode.com/api/vcards/{vcard_id}
Beispiel
curl --request GET \
--url 'https://rqrcode.com/api/vcards/{vcard_id}' \
--header 'Authorization: Bearer {api_key}'
Parameter
Kein zusätzlicher Parameter.
Antwortbeispiel
{
    "data": {
        "id": 1,
        "project_id": null,
        "qr_code_id": 10,
        "name": "Max Mustermann",
        "slug": "john-doe",
        "public_url": "https://rqrcode.com/vcard/john-doe",
        "stable_url": "https://rqrcode.com/vcard/r/1",
        "vcf_url": "https://rqrcode.com/vcard/john-doe/contact.vcf",
        "blocks": [],
        "pageviews": 42,
        "scans": 8,
        "vcf_downloads": 3,
        "is_enabled": true,
        "datetime": "2026-04-20 07:55:35"
    }
}