curl --request POST \
--url https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vcfSource": "BEGIN:VCARD\nVERSION:3.0\nFN:Jane Q. Doe\nN:Doe;Jane;Quincy;Dr.;PhD\nNICKNAME:Janie\nORG:Example Corp;Engineering\nTITLE:Principal Engineer\nEMAIL;TYPE=WORK,PREF:jane@example.com\nEMAIL;TYPE=HOME:jane.doe@home.example\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\nURL:https://example.com/jane\nBDAY:1986-04-12\nNOTE:Met at the 2024 conference\\, follow up in Q3.\nEND:VCARD\nBEGIN:VCARD\nVERSION:4.0\nFN:Alex Smith\nN:Smith;Alex;;;\nEMAIL:alex@example.com\nTEL;VALUE=uri;TYPE=\"voice,cell\":tel:+1-415-555-0188\nEND:VCARD",
"prettyPrint": "true",
"flatArray": "true",
"structuredN": "true",
"structuredAdr": "true",
"parseDates": "true",
"groupByType": "",
"includePhoto": "",
"includeRaw": ""
}
'import requests
url = "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter"
payload = {
"vcfSource": "BEGIN:VCARD
VERSION:3.0
FN:Jane Q. Doe
N:Doe;Jane;Quincy;Dr.;PhD
NICKNAME:Janie
ORG:Example Corp;Engineering
TITLE:Principal Engineer
EMAIL;TYPE=WORK,PREF:jane@example.com
EMAIL;TYPE=HOME:jane.doe@home.example
TEL;TYPE=CELL,VOICE:+1-415-555-0142
TEL;TYPE=WORK,VOICE:+1-415-555-0199
ADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA
URL:https://example.com/jane
BDAY:1986-04-12
NOTE:Met at the 2024 conference\, follow up in Q3.
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:Alex Smith
N:Smith;Alex;;;
EMAIL:alex@example.com
TEL;VALUE=uri;TYPE=\"voice,cell\":tel:+1-415-555-0188
END:VCARD",
"prettyPrint": "true",
"flatArray": "true",
"structuredN": "true",
"structuredAdr": "true",
"parseDates": "true",
"groupByType": "",
"includePhoto": "",
"includeRaw": ""
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
vcfSource: 'BEGIN:VCARD\nVERSION:3.0\nFN:Jane Q. Doe\nN:Doe;Jane;Quincy;Dr.;PhD\nNICKNAME:Janie\nORG:Example Corp;Engineering\nTITLE:Principal Engineer\nEMAIL;TYPE=WORK,PREF:jane@example.com\nEMAIL;TYPE=HOME:jane.doe@home.example\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\nURL:https://example.com/jane\nBDAY:1986-04-12\nNOTE:Met at the 2024 conference\, follow up in Q3.\nEND:VCARD\nBEGIN:VCARD\nVERSION:4.0\nFN:Alex Smith\nN:Smith;Alex;;;\nEMAIL:alex@example.com\nTEL;VALUE=uri;TYPE="voice,cell":tel:+1-415-555-0188\nEND:VCARD',
prettyPrint: 'true',
flatArray: 'true',
structuredN: 'true',
structuredAdr: 'true',
parseDates: 'true',
groupByType: '',
includePhoto: '',
includeRaw: ''
})
};
fetch('https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'vcfSource' => 'BEGIN:VCARD
VERSION:3.0
FN:Jane Q. Doe
N:Doe;Jane;Quincy;Dr.;PhD
NICKNAME:Janie
ORG:Example Corp;Engineering
TITLE:Principal Engineer
EMAIL;TYPE=WORK,PREF:jane@example.com
EMAIL;TYPE=HOME:jane.doe@home.example
TEL;TYPE=CELL,VOICE:+1-415-555-0142
TEL;TYPE=WORK,VOICE:+1-415-555-0199
ADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA
URL:https://example.com/jane
BDAY:1986-04-12
NOTE:Met at the 2024 conference\\, follow up in Q3.
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:Alex Smith
N:Smith;Alex;;;
EMAIL:alex@example.com
TEL;VALUE=uri;TYPE="voice,cell":tel:+1-415-555-0188
END:VCARD',
'prettyPrint' => 'true',
'flatArray' => 'true',
'structuredN' => 'true',
'structuredAdr' => 'true',
'parseDates' => 'true',
'groupByType' => '',
'includePhoto' => '',
'includeRaw' => ''
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter"
payload := strings.NewReader("{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}"
response = http.request(request)
puts response.read_body{
"tool": "vcf-vcard-to-json-converter",
"tool_version": "1.0.1",
"outputs": {
"jsonOutput": "[\n {\n \"VERSION\": \"3.0\",\n \"FN\": \"Jane Q. Doe\",\n \"N\": {\n \"family\": \"Doe\",\n \"given\": \"Jane\",\n \"additional\": \"Quincy\",\n \"prefix\": \"Dr.\",\n \"suffix\": \"PhD\"\n },\n \"NICKNAME\": [\n \"Janie\"\n ],\n \"ORG\": [\n \"Example Corp\",\n \"Engineering\"\n ],\n \"TITLE\": \"Principal Engineer\",\n \"EMAIL\": [\n {\n \"value\": \"jane@example.com\",\n \"params\": {\n \"TYPE\": [\n \"WORK\",\n \"PREF\"\n ]\n }\n },\n {\n \"value\": \"jane.doe@home.example\",\n \"params\": {\n \"TYPE\": \"HOME\"\n }\n }\n ],\n \"TEL\": [\n {\n \"value\": \"+1-415-555-0142\",\n \"params\": {\n \"TYPE\": [\n \"CELL\",\n \"VOICE\"\n ]\n }\n },\n {\n \"value\": \"+1-415-555-0199\",\n \"params\": {\n \"TYPE\": [\n \"WORK\",\n \"VOICE\"\n ]\n }\n }\n ],\n \"ADR\": {\n \"value\": {\n \"street\": \"500 Market St\",\n \"locality\": \"San Francisco\",\n \"region\": \"CA\",\n \"postalCode\": \"94105\",\n \"country\": \"USA\"\n },\n \"params\": {\n \"TYPE\": \"WORK\"\n }\n },\n \"URL\": \"https://example.com/jane\",\n \"BDAY\": \"1986-04-12\",\n \"NOTE\": \"Met at the 2024 conference, follow up in Q3.\"\n },\n {\n \"VERSION\": \"4.0\",\n \"FN\": \"Alex Smith\",\n \"N\": {\n \"family\": \"Smith\",\n \"given\": \"Alex\"\n },\n \"EMAIL\": \"alex@example.com\",\n \"TEL\": {\n \"value\": \"+1-415-555-0188\",\n \"params\": {\n \"VALUE\": \"uri\",\n \"TYPE\": \"voice,cell\"\n }\n }\n }\n]"
},
"credits_used": 3,
"credits_remaining": null
}{
"type": "https://iotools.cloud/docs/errors/validation_error",
"title": "Invalid request",
"status": 400,
"code": "validation_error",
"detail": "One or more inputs are invalid — see `fields`.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"fields": {
"inputString": "Required"
}
}{
"type": "https://iotools.cloud/docs/errors/invalid_api_key",
"title": "Invalid API key",
"status": 401,
"code": "invalid_api_key",
"detail": "Provide 'Authorization: Bearer <key>'.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/insufficient_credits",
"title": "Insufficient credits",
"status": 402,
"code": "insufficient_credits",
"detail": "This call costs 1 credit and 0 remain in this month's allowance.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"credits_used": 0,
"credits_remaining": 0
}{
"type": "https://iotools.cloud/docs/errors/tool_not_allowed",
"title": "Tool not available over the API",
"status": 403,
"code": "tool_not_allowed",
"detail": "\"Background Remover\" is available on iotools.cloud but has no API endpoint.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_found",
"title": "Tool not found",
"status": 404,
"code": "tool_not_found",
"detail": "No tool with that slug. See GET /v1/tools/list.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/payload_too_large",
"title": "Payload too large",
"status": 413,
"code": "payload_too_large",
"detail": "Request body exceeds this tool's size limit.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/rate_limited",
"title": "Rate limit exceeded",
"status": 429,
"code": "rate_limited",
"detail": "Too many requests. Retry in 30s.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"retry_after": 30
}{
"type": "https://iotools.cloud/docs/errors/processing_error",
"title": "Tool failed to run",
"status": 500,
"code": "processing_error",
"detail": "The tool failed to run. Please try again.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"credits_used": 0
}{
"type": "https://iotools.cloud/docs/errors/tool_disabled",
"title": "Tool temporarily disabled",
"status": 503,
"code": "tool_disabled",
"detail": "This tool is temporarily unavailable. Try again shortly.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}VCF (vCard) to JSON Converter
Parse .vcf vCard files (versions 3.0 and 4.0) into structured JSON — split names and addresses into fields, parse dates to ISO 8601, group contact methods by type, and handle multiple vCards in one file.
curl --request POST \
--url https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"vcfSource": "BEGIN:VCARD\nVERSION:3.0\nFN:Jane Q. Doe\nN:Doe;Jane;Quincy;Dr.;PhD\nNICKNAME:Janie\nORG:Example Corp;Engineering\nTITLE:Principal Engineer\nEMAIL;TYPE=WORK,PREF:jane@example.com\nEMAIL;TYPE=HOME:jane.doe@home.example\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\nURL:https://example.com/jane\nBDAY:1986-04-12\nNOTE:Met at the 2024 conference\\, follow up in Q3.\nEND:VCARD\nBEGIN:VCARD\nVERSION:4.0\nFN:Alex Smith\nN:Smith;Alex;;;\nEMAIL:alex@example.com\nTEL;VALUE=uri;TYPE=\"voice,cell\":tel:+1-415-555-0188\nEND:VCARD",
"prettyPrint": "true",
"flatArray": "true",
"structuredN": "true",
"structuredAdr": "true",
"parseDates": "true",
"groupByType": "",
"includePhoto": "",
"includeRaw": ""
}
'import requests
url = "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter"
payload = {
"vcfSource": "BEGIN:VCARD
VERSION:3.0
FN:Jane Q. Doe
N:Doe;Jane;Quincy;Dr.;PhD
NICKNAME:Janie
ORG:Example Corp;Engineering
TITLE:Principal Engineer
EMAIL;TYPE=WORK,PREF:jane@example.com
EMAIL;TYPE=HOME:jane.doe@home.example
TEL;TYPE=CELL,VOICE:+1-415-555-0142
TEL;TYPE=WORK,VOICE:+1-415-555-0199
ADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA
URL:https://example.com/jane
BDAY:1986-04-12
NOTE:Met at the 2024 conference\, follow up in Q3.
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:Alex Smith
N:Smith;Alex;;;
EMAIL:alex@example.com
TEL;VALUE=uri;TYPE=\"voice,cell\":tel:+1-415-555-0188
END:VCARD",
"prettyPrint": "true",
"flatArray": "true",
"structuredN": "true",
"structuredAdr": "true",
"parseDates": "true",
"groupByType": "",
"includePhoto": "",
"includeRaw": ""
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
vcfSource: 'BEGIN:VCARD\nVERSION:3.0\nFN:Jane Q. Doe\nN:Doe;Jane;Quincy;Dr.;PhD\nNICKNAME:Janie\nORG:Example Corp;Engineering\nTITLE:Principal Engineer\nEMAIL;TYPE=WORK,PREF:jane@example.com\nEMAIL;TYPE=HOME:jane.doe@home.example\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\nURL:https://example.com/jane\nBDAY:1986-04-12\nNOTE:Met at the 2024 conference\, follow up in Q3.\nEND:VCARD\nBEGIN:VCARD\nVERSION:4.0\nFN:Alex Smith\nN:Smith;Alex;;;\nEMAIL:alex@example.com\nTEL;VALUE=uri;TYPE="voice,cell":tel:+1-415-555-0188\nEND:VCARD',
prettyPrint: 'true',
flatArray: 'true',
structuredN: 'true',
structuredAdr: 'true',
parseDates: 'true',
groupByType: '',
includePhoto: '',
includeRaw: ''
})
};
fetch('https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'vcfSource' => 'BEGIN:VCARD
VERSION:3.0
FN:Jane Q. Doe
N:Doe;Jane;Quincy;Dr.;PhD
NICKNAME:Janie
ORG:Example Corp;Engineering
TITLE:Principal Engineer
EMAIL;TYPE=WORK,PREF:jane@example.com
EMAIL;TYPE=HOME:jane.doe@home.example
TEL;TYPE=CELL,VOICE:+1-415-555-0142
TEL;TYPE=WORK,VOICE:+1-415-555-0199
ADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA
URL:https://example.com/jane
BDAY:1986-04-12
NOTE:Met at the 2024 conference\\, follow up in Q3.
END:VCARD
BEGIN:VCARD
VERSION:4.0
FN:Alex Smith
N:Smith;Alex;;;
EMAIL:alex@example.com
TEL;VALUE=uri;TYPE="voice,cell":tel:+1-415-555-0188
END:VCARD',
'prettyPrint' => 'true',
'flatArray' => 'true',
'structuredN' => 'true',
'structuredAdr' => 'true',
'parseDates' => 'true',
'groupByType' => '',
'includePhoto' => '',
'includeRaw' => ''
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter"
payload := strings.NewReader("{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.iotools.cloud/v1/tool/vcf-vcard-to-json-converter")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"vcfSource\": \"BEGIN:VCARD\\nVERSION:3.0\\nFN:Jane Q. Doe\\nN:Doe;Jane;Quincy;Dr.;PhD\\nNICKNAME:Janie\\nORG:Example Corp;Engineering\\nTITLE:Principal Engineer\\nEMAIL;TYPE=WORK,PREF:jane@example.com\\nEMAIL;TYPE=HOME:jane.doe@home.example\\nTEL;TYPE=CELL,VOICE:+1-415-555-0142\\nTEL;TYPE=WORK,VOICE:+1-415-555-0199\\nADR;TYPE=WORK:;;500 Market St;San Francisco;CA;94105;USA\\nURL:https://example.com/jane\\nBDAY:1986-04-12\\nNOTE:Met at the 2024 conference\\\\, follow up in Q3.\\nEND:VCARD\\nBEGIN:VCARD\\nVERSION:4.0\\nFN:Alex Smith\\nN:Smith;Alex;;;\\nEMAIL:alex@example.com\\nTEL;VALUE=uri;TYPE=\\\"voice,cell\\\":tel:+1-415-555-0188\\nEND:VCARD\",\n \"prettyPrint\": \"true\",\n \"flatArray\": \"true\",\n \"structuredN\": \"true\",\n \"structuredAdr\": \"true\",\n \"parseDates\": \"true\",\n \"groupByType\": \"\",\n \"includePhoto\": \"\",\n \"includeRaw\": \"\"\n}"
response = http.request(request)
puts response.read_body{
"tool": "vcf-vcard-to-json-converter",
"tool_version": "1.0.1",
"outputs": {
"jsonOutput": "[\n {\n \"VERSION\": \"3.0\",\n \"FN\": \"Jane Q. Doe\",\n \"N\": {\n \"family\": \"Doe\",\n \"given\": \"Jane\",\n \"additional\": \"Quincy\",\n \"prefix\": \"Dr.\",\n \"suffix\": \"PhD\"\n },\n \"NICKNAME\": [\n \"Janie\"\n ],\n \"ORG\": [\n \"Example Corp\",\n \"Engineering\"\n ],\n \"TITLE\": \"Principal Engineer\",\n \"EMAIL\": [\n {\n \"value\": \"jane@example.com\",\n \"params\": {\n \"TYPE\": [\n \"WORK\",\n \"PREF\"\n ]\n }\n },\n {\n \"value\": \"jane.doe@home.example\",\n \"params\": {\n \"TYPE\": \"HOME\"\n }\n }\n ],\n \"TEL\": [\n {\n \"value\": \"+1-415-555-0142\",\n \"params\": {\n \"TYPE\": [\n \"CELL\",\n \"VOICE\"\n ]\n }\n },\n {\n \"value\": \"+1-415-555-0199\",\n \"params\": {\n \"TYPE\": [\n \"WORK\",\n \"VOICE\"\n ]\n }\n }\n ],\n \"ADR\": {\n \"value\": {\n \"street\": \"500 Market St\",\n \"locality\": \"San Francisco\",\n \"region\": \"CA\",\n \"postalCode\": \"94105\",\n \"country\": \"USA\"\n },\n \"params\": {\n \"TYPE\": \"WORK\"\n }\n },\n \"URL\": \"https://example.com/jane\",\n \"BDAY\": \"1986-04-12\",\n \"NOTE\": \"Met at the 2024 conference, follow up in Q3.\"\n },\n {\n \"VERSION\": \"4.0\",\n \"FN\": \"Alex Smith\",\n \"N\": {\n \"family\": \"Smith\",\n \"given\": \"Alex\"\n },\n \"EMAIL\": \"alex@example.com\",\n \"TEL\": {\n \"value\": \"+1-415-555-0188\",\n \"params\": {\n \"VALUE\": \"uri\",\n \"TYPE\": \"voice,cell\"\n }\n }\n }\n]"
},
"credits_used": 3,
"credits_remaining": null
}{
"type": "https://iotools.cloud/docs/errors/validation_error",
"title": "Invalid request",
"status": 400,
"code": "validation_error",
"detail": "One or more inputs are invalid — see `fields`.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"fields": {
"inputString": "Required"
}
}{
"type": "https://iotools.cloud/docs/errors/invalid_api_key",
"title": "Invalid API key",
"status": 401,
"code": "invalid_api_key",
"detail": "Provide 'Authorization: Bearer <key>'.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/insufficient_credits",
"title": "Insufficient credits",
"status": 402,
"code": "insufficient_credits",
"detail": "This call costs 1 credit and 0 remain in this month's allowance.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"credits_used": 0,
"credits_remaining": 0
}{
"type": "https://iotools.cloud/docs/errors/tool_not_allowed",
"title": "Tool not available over the API",
"status": 403,
"code": "tool_not_allowed",
"detail": "\"Background Remover\" is available on iotools.cloud but has no API endpoint.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/tool_not_found",
"title": "Tool not found",
"status": 404,
"code": "tool_not_found",
"detail": "No tool with that slug. See GET /v1/tools/list.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/payload_too_large",
"title": "Payload too large",
"status": 413,
"code": "payload_too_large",
"detail": "Request body exceeds this tool's size limit.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}{
"type": "https://iotools.cloud/docs/errors/rate_limited",
"title": "Rate limit exceeded",
"status": 429,
"code": "rate_limited",
"detail": "Too many requests. Retry in 30s.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"retry_after": 30
}{
"type": "https://iotools.cloud/docs/errors/processing_error",
"title": "Tool failed to run",
"status": 500,
"code": "processing_error",
"detail": "The tool failed to run. Please try again.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11",
"credits_used": 0
}{
"type": "https://iotools.cloud/docs/errors/tool_disabled",
"title": "Tool temporarily disabled",
"status": 503,
"code": "tool_disabled",
"detail": "This tool is temporarily unavailable. Try again shortly.",
"request_id": "e4042b29-8f1e-4c7a-9b52-6f0d1a3c7e11"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
vCard Source
Pretty-print JSON output
Output flat array of contacts (skip wrapper object)
Split N (Name) into family/given/additional/prefix/suffix
Split ADR (Address) into pobox/extended/street/locality/region/postalCode/country
Parse BDAY/ANNIVERSARY/REV into ISO 8601
Group EMAIL/TEL/ADR/URL by TYPE parameter
Include PHOTO/LOGO base64 data (large output)
Include raw property values alongside parsed values
Response
Tool output
Show child attributes
Show child attributes
The tool's slug, echoing the {slug} in the request path.
Output-contract version for this tool.
Credits this call consumed, after any settlement refund. 0 when metering is disabled.
Credits left in the current monthly allowance, or null when metering is disabled.
Correlation id, also sent as x-request-id.
Was this page helpful?