Kartu vCard
Kartu nama digital, ekspor .vcf, dan halaman publik.
GET https://rqrcode.com/api/vcards/
curl --request GET \
--url 'https://rqrcode.com/api/vcards/' \
--header 'Authorization: Bearer {api_key}'
| Parameter | Detail | Deskripsi |
|---|---|---|
| page |
Opsional
ui.admin.api_docs.common.types.Bilangan bulat
|
Nomor halaman yang ingin Anda ambil hasilnya. Defaultnya 1. |
| results_per_page |
Opsional
ui.admin.api_docs.common.types.Bilangan bulat
|
Jumlah hasil yang Anda inginkan per halaman. Nilai yang diizinkan: 10, 25, 50, 100, 250, 500, 1000. Defaultnya 25. |
{
"data": [
{
"id": 1,
"project_id": null,
"qr_code_id": 10,
"name": "Budi Santoso",
"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"
}
}
GET https://rqrcode.com/api/vcards/{vcard_id}
curl --request GET \
--url 'https://rqrcode.com/api/vcards/{vcard_id}' \
--header 'Authorization: Bearer {api_key}'
{
"data": {
"id": 1,
"project_id": null,
"qr_code_id": 10,
"name": "Budi Santoso",
"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"
}
}