Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.blitz-api.ai/llms.txt

Use this file to discover all available pages before exploring further.

Phone Enrichment — POST /v2/enrichment/phone

Retrieve a direct phone number from a LinkedIn profile URL. US contacts only. Requires Unlimited Phone Numbers plan.
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.
This snippet uses the blitzRequest / blitz_request client defined in the Code Examples hub. Copy that first.
const result = await blitzRequest("POST", "/v2/enrichment/phone", {
  person_linkedin_url: "https://www.linkedin.com/in/example-person",
});

if (result.found) {
  console.log(`Phone: ${result.phone}`);
}