TextText-based

text/vcard

vCard

Reference for text/vcard, the MIME type for vCard contact files used for sharing personal and business contact information.

MIME Type Detector

Drop a file to detect its MIME type — no upload, runs in your browser

📄

Drop any file here or click to choose

Expected extensions: .vcf, .vcard

HTTP Content-Type Header

HTTP Header
Content-Type: text/vcard; charset=utf-8

Associated File Extensions

.vcf.vcard

Quick Facts

MIME Typetext/vcard
CategoryText
TypeText-based (human-readable)
Extensions.vcf, .vcard

Common Usage

vCard is the standard format for electronic business cards and contact information. It is used by email clients, CRM systems, phone contact lists, and digital networking tools.

vCard files contain names, phone numbers, email addresses, photos, and social profiles.

Code Examples

HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.vcf" type="text/vcard">

<!-- Or for script/media elements -->
<script type="text/vcard" src="file.vcf"></script>
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('text/vcard');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'text/vcard' });
nginx
# nginx.conf — add to types block or use default
types {
    text/vcard  vcf vcard;
}

# Or set for a specific location
location /api/ {
    default_type text/vcard;
}

Related MIME Types

More Text MIME Types

Other text types in the Text family

Related Tools

Explore More MIME Types

Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.