Enrich a person
Person Enrichment
Retrieve a professional’s full profile and entire career history from their LinkedIn profile URL.
POST
/
v2
/
enrichment
/
person
Person Enrichment
curl --request POST \
--url https://api.blitz-api.ai/v2/enrichment/person \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"person_linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373"
}
'import requests
url = "https://api.blitz-api.ai/v2/enrichment/person"
payload = { "person_linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({person_linkedin_url: 'https://www.linkedin.com/in/antoine-blitz-5581b7373'})
};
fetch('https://api.blitz-api.ai/v2/enrichment/person', 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.blitz-api.ai/v2/enrichment/person",
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([
'person_linkedin_url' => 'https://www.linkedin.com/in/antoine-blitz-5581b7373'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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.blitz-api.ai/v2/enrichment/person"
payload := strings.NewReader("{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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.blitz-api.ai/v2/enrichment/person")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blitz-api.ai/v2/enrichment/person")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}"
response = http.request(request)
puts response.read_body{
"found": true,
"person": {
"first_name": "Antoine",
"last_name": "Blitz",
"full_name": "Antoine Blitz",
"nickname": null,
"civility_title": null,
"headline": "Founder Blitzapi | @Blitzapi",
"about_me": "I build developer-first tools for scalable, intelligent B2B prospecting. I\\'m the…",
"location": {
"city": null,
"state_code": "NY",
"country_code": "US",
"continent": "North America",
"postal_code": null,
"street_address": null
},
"linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373",
"connections_count": 500,
"profile_picture_url": null,
"experiences": [
{
"company_name": "Blitzapi",
"job_title": "Founder Blitzapi",
"company_linkedin_url": "https://www.linkedin.com/company/blitz-api",
"company_linkedin_id": "be578414-239f-522e-b2e1-9246e22a52d1",
"company_domain": "blitz-api.ai",
"job_description": "We help GTM teams win faster by making high-quality B2B data and intent signals instantly available — directly in your existing stack.",
"job_start_date": "2025-05-01",
"job_end_date": null,
"job_is_current": true,
"job_contract_type": null,
"job_work_arrangement": null,
"job_location": {
"city": null,
"state_code": null,
"country_code": null
}
},
{
"company_name": "Blitz Agency",
"job_title": "Growth Engineer",
"company_linkedin_url": "https://www.linkedin.com/company/blitz-agency",
"company_linkedin_id": "3f0d1a8c-9b52-4c7e-8a41-2d6f5b7c9e10",
"company_domain": "blitz-agency.com",
"job_description": null,
"job_start_date": "2022-01-01",
"job_end_date": "2025-04-30",
"job_is_current": false,
"job_contract_type": null,
"job_work_arrangement": null,
"job_location": {
"city": "Paris",
"state_code": null,
"country_code": "FR"
}
}
],
"education": [
{
"school_name": "Michigan State University",
"degree": "Bachelor of Science, Industrial Engineering",
"start_date": "1990-09-01",
"end_date": "1994-06-01"
}
],
"skills": [],
"certifications": []
},
"fair_usage": {
"records_used": 1,
"records_remaining": 9913547,
"next_reset_at": "2026-09-29T10:25:23.155Z",
"rate_limit": {
"requests_per_second": 10,
"remaining_this_second": 9
},
"request_id": "019bae09-0055-7441-b2ea-16086e499219"
}
}{
"success": false,
"message": "Invalid API key, please provide a valid API key in the 'x-api-key' header"
}{
"success": false,
"message": "Fair Use limit reached. Upgrade your plan at app.blitz-api.ai/billing or contact support to increase your monthly capacity."
}{
"success": false,
"message": "Not Found"
}{
"success": false,
"message": "Rate limit exceeded, please try again later"
}
Agents & LLMs: a Markdown version of this page is available by appending .md to the URL, and the full documentation index is at llms.txt.
1 record on success
Response always carries
found. On found: true, person holds the full profile: identity, headline, location, every role in experiences[], plus education[], skills[] and certifications[]. On found: false, person is null and no record is charged.This is the profile-first counterpart to the reverse lookups. Use it when you already hold a LinkedIn URL and want the whole career, not a single contact point. Pair it with Find Work Email or Find Mobile & Direct Phone when you also need a way to reach them.
Enrichment workflow recipe
End-to-end pattern for processing a list of LinkedIn URLs into verified contact data.
Authorizations
Your Blitz API Key. Get one from https://app.blitz-api.ai
Body
application/json
LinkedIn profile URL of the person to enrich.
Example:
"https://www.linkedin.com/in/antoine-blitz-5581b7373"
Response
OK
The response is of type object.
⌘I
Person Enrichment
curl --request POST \
--url https://api.blitz-api.ai/v2/enrichment/person \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"person_linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373"
}
'import requests
url = "https://api.blitz-api.ai/v2/enrichment/person"
payload = { "person_linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({person_linkedin_url: 'https://www.linkedin.com/in/antoine-blitz-5581b7373'})
};
fetch('https://api.blitz-api.ai/v2/enrichment/person', 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.blitz-api.ai/v2/enrichment/person",
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([
'person_linkedin_url' => 'https://www.linkedin.com/in/antoine-blitz-5581b7373'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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.blitz-api.ai/v2/enrichment/person"
payload := strings.NewReader("{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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.blitz-api.ai/v2/enrichment/person")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blitz-api.ai/v2/enrichment/person")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"person_linkedin_url\": \"https://www.linkedin.com/in/antoine-blitz-5581b7373\"\n}"
response = http.request(request)
puts response.read_body{
"found": true,
"person": {
"first_name": "Antoine",
"last_name": "Blitz",
"full_name": "Antoine Blitz",
"nickname": null,
"civility_title": null,
"headline": "Founder Blitzapi | @Blitzapi",
"about_me": "I build developer-first tools for scalable, intelligent B2B prospecting. I\\'m the…",
"location": {
"city": null,
"state_code": "NY",
"country_code": "US",
"continent": "North America",
"postal_code": null,
"street_address": null
},
"linkedin_url": "https://www.linkedin.com/in/antoine-blitz-5581b7373",
"connections_count": 500,
"profile_picture_url": null,
"experiences": [
{
"company_name": "Blitzapi",
"job_title": "Founder Blitzapi",
"company_linkedin_url": "https://www.linkedin.com/company/blitz-api",
"company_linkedin_id": "be578414-239f-522e-b2e1-9246e22a52d1",
"company_domain": "blitz-api.ai",
"job_description": "We help GTM teams win faster by making high-quality B2B data and intent signals instantly available — directly in your existing stack.",
"job_start_date": "2025-05-01",
"job_end_date": null,
"job_is_current": true,
"job_contract_type": null,
"job_work_arrangement": null,
"job_location": {
"city": null,
"state_code": null,
"country_code": null
}
},
{
"company_name": "Blitz Agency",
"job_title": "Growth Engineer",
"company_linkedin_url": "https://www.linkedin.com/company/blitz-agency",
"company_linkedin_id": "3f0d1a8c-9b52-4c7e-8a41-2d6f5b7c9e10",
"company_domain": "blitz-agency.com",
"job_description": null,
"job_start_date": "2022-01-01",
"job_end_date": "2025-04-30",
"job_is_current": false,
"job_contract_type": null,
"job_work_arrangement": null,
"job_location": {
"city": "Paris",
"state_code": null,
"country_code": "FR"
}
}
],
"education": [
{
"school_name": "Michigan State University",
"degree": "Bachelor of Science, Industrial Engineering",
"start_date": "1990-09-01",
"end_date": "1994-06-01"
}
],
"skills": [],
"certifications": []
},
"fair_usage": {
"records_used": 1,
"records_remaining": 9913547,
"next_reset_at": "2026-09-29T10:25:23.155Z",
"rate_limit": {
"requests_per_second": 10,
"remaining_this_second": 9
},
"request_id": "019bae09-0055-7441-b2ea-16086e499219"
}
}{
"success": false,
"message": "Invalid API key, please provide a valid API key in the 'x-api-key' header"
}{
"success": false,
"message": "Fair Use limit reached. Upgrade your plan at app.blitz-api.ai/billing or contact support to increase your monthly capacity."
}{
"success": false,
"message": "Not Found"
}{
"success": false,
"message": "Rate limit exceeded, please try again later"
}
