# Convert pasted VCF contacts to CSV rows

**Use case:** 

Paste a standards-based vCard and turn its name, phone, email, address, organization, and URL into a normalized CSV-ready contact row.

## Input

```json
{
  "vcfText": "BEGIN:VCARD\nVERSION:4.0\nFN:Simon Perreault\nN:Perreault;Simon;;;ing. jr,M.Sc.\nBDAY:--0203\nORG;TYPE=work:Viagenie\nADR;TYPE=work:;Suite D2-630;2875 Laurier;Quebec;QC;G1V 2M2;Canada\nTEL;VALUE=uri;TYPE=work,voice;PREF=1:tel:+1-418-656-9254;ext=102\nTEL;VALUE=uri;TYPE=work,cell,voice:tel:+1-418-262-6501\nEMAIL;TYPE=work:simon.perreault@viagenie.ca\nURL;TYPE=home:http://nomis80.org\nEND:VCARD",
  "vcfUrls": [],
  "maxContacts": 10
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "string"
  },
  "cardIndex": {
    "label": "Card #",
    "format": "integer"
  },
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "organizations": {
    "label": "Organizations",
    "format": "array"
  },
  "titles": {
    "label": "Titles",
    "format": "array"
  },
  "addresses": {
    "label": "Addresses",
    "format": "array"
  },
  "urls": {
    "label": "URLs",
    "format": "array"
  },
  "convertedAt": {
    "label": "Converted at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [VCF to CSV Converter](https://apify.com/automation-lab/vcf-to-csv-converter) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/vcf-to-csv-converter) to learn more, explore other use cases, and run it yourself.