Boneyard Tools

vCard (.vcf) Parser

Drop in a .vcf vCard file to read the contacts inside it: full and structured names, every phone number and email with its type, the organization, job title, website, birthday, and address. A single file can hold many cards, and each one is shown as its own card. The file is read entirely in your browser and never uploaded.

How to parse a vCard file

  1. Drag a .vcf file onto the box, or click to browse for one.
  2. Each contact in the file is parsed and shown as its own card.
  3. Read the names, phones, emails, and organization for every contact.

Examples

An exported address book

contacts.vcf exported from a phone with 3 saved contacts
3 contacts parsed, each with names, phone types, and emails shown

Frequently asked questions

Is my .vcf file uploaded anywhere?

No. The file is read and parsed entirely in your browser using JavaScript. Nothing is sent to a server, so your contacts and their personal details stay on your device.

Does this work fully in the browser?

Yes. The parser runs as in-browser JavaScript with no server round trip, so it works offline once the page has loaded and never transmits your contact data.

Can it read a file with more than one contact?

Yes. A .vcf file often contains many vCards, each wrapped in a BEGIN:VCARD and END:VCARD block. The parser splits them apart and shows every contact it finds.

Which vCard fields are extracted?

Full name (FN), structured name (N), every phone (TEL) and email (EMAIL) with its TYPE such as CELL or WORK, organization (ORG), job title (TITLE), website (URL), birthday (BDAY), and postal address (ADR).

Does it handle folded lines and different versions?

Yes. Continuation lines that begin with a space or tab are unfolded first, and both the TYPE=CELL and the older bare CELL parameter styles are recognized, covering vCard 2.1, 3.0, and 4.0 files.

What encodings are supported?

The file is decoded as UTF-8, which covers the vast majority of vCard exports, so accented names and non-Latin characters are read correctly.

Related tools