vCard
Digital business cards, .vcf export and public page.
GET https://rqrcode.com/api/vcards/
curl --request GET \
--url 'https://rqrcode.com/api/vcards/' \
--header 'Authorization: Bearer {api_key}'
| Parameters | Details | Description |
|---|---|---|
| page |
Optional
ui.admin.api_docs.common.types.Integer
|
The page number that you want to get the results for. Defaults to 1. |
| results_per_page |
Optional
ui.admin.api_docs.common.types.Integer
|
How many results you want per page. Allowed values are: 10, 25, 50, 100, 250, 500, 1000. Defaults to 25. |
{
"data": [
{
"id": 1,
"project_id": null,
"qr_code_id": 10,
"name": "John Doe",
"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": "John Doe",
"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"
}
}