Skip to content

Vcard Generate API

POST https://api.findutils.com/api/tools/vcard-generate/execute

Generate a vCard (.vcf) contact card from name, organisation, emails, phones, address, URL, note and birthday. vCard 3.0 by default (imports into iOS Contacts, Google Contacts and Outlook), 4.0 on request. Values are escaped and long lines folded per RFC 6350.

Request body

application/json
  • full_name

    string required

    Display name (FN). Required.

  • given_name

    string optional

    First name (N given part).

  • family_name

    string optional

    Last name (N family part).

  • organization

    string optional

    Company or organisation (ORG).

  • title

    string optional

    Job title (TITLE).

  • emails

    array optional

    Email addresses (EMAIL). The first is marked preferred.

  • phones

    array optional

    Phone numbers (TEL), international format recommended. The first is marked preferred.

  • street

    string optional

    Street address (ADR street part).

  • city

    string optional

    City (ADR locality).

  • region

    string optional

    State, province or region (ADR region).

  • postal_code

    string optional

    Postal code (ADR).

  • country

    string optional

    Country (ADR).

  • url

    string optional

    Website (URL).

  • note

    string optional

    Free text (NOTE).

  • birthday

    string optional

    Birthday as YYYY-MM-DD (BDAY).

  • version

    string optional

    vCard version. Defaults to 3.0. One of 3.0 · 4.0. Default "3.0".

Example arguments

Verified
{
  "full_name": "Ada Lovelace",
  "emails": [
    "[email protected]"
  ],
  "phones": [
    "+44 20 7946 0000"
  ]
}