Thẻ vCard
Danh thiếp số, xuất .vcf và trang công khai.
GET https://rqrcode.com/api/vcards/
curl --request GET \
--url 'https://rqrcode.com/api/vcards/' \
--header 'Authorization: Bearer {api_key}'
| Tham số | Chi tiết | Mô tả |
|---|---|---|
| page |
Tùy chọn
ui.admin.api_docs.common.types.Số nguyên
|
Số trang mà bạn muốn lấy kết quả. Mặc định là 1. |
| results_per_page |
Tùy chọn
ui.admin.api_docs.common.types.Số nguyên
|
Số kết quả bạn muốn trên mỗi trang. Giá trị được phép: 10, 25, 50, 100, 250, 500, 1000. Mặc định là 25. |
{
"data": [
{
"id": 1,
"project_id": null,
"qr_code_id": 10,
"name": "Nguyễn Văn An",
"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": "Nguyễn Văn An",
"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"
}
}