> ## 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.

# Person Enrichment

> Retrieve a professional's full profile and entire career history from their LinkedIn profile URL.

<div style={{position:'absolute',width:'1px',height:'1px',padding:0,margin:'-1px',overflow:'hidden',clipPath:'inset(50%)',whiteSpace:'nowrap',border:0}}>
  > **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](https://docs.blitz-api.ai/llms.txt).
</div>

<Callout icon="/images/icons/scan-text.svg" color="blue">
  **1 record on success**
</Callout>

Retrieve a professional's full profile and entire career history from their LinkedIn profile URL.

<Note>
  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.
</Note>

<Tip>
  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](/api-reference/people-enrichment/find-work-email) or [Find Mobile & Direct Phone](/api-reference/people-enrichment/find-mobile-&-direct-phone) when you also need a way to reach them.
</Tip>

<Card title="Enrichment workflow recipe" icon="layer-group" href="/guide/recipes/enrichment-workflow">
  End-to-end pattern for processing a list of LinkedIn URLs into verified contact data.
</Card>


## OpenAPI

````yaml api-reference/v2.openapi.json POST /v2/enrichment/person
openapi: 3.1.0
info:
  title: Blitz API Reference
  version: 2.0.0
  description: >-
    Welcome to the Blitz API Reference.


    Use this interactive documentation to explore and test every v2 endpoint.
    Authentication is required via the `x-api-key` header.


    **Base URL**: `https://api.blitz-api.ai`


    **Rate limit**: 10 requests per second, per endpoint (all plans). Each
    endpoint has its own independent budget, so different endpoints don't share
    the limit.


    **Pricing**: All endpoints are unlimited on paid plans ($399+/mo). Free
    trial accounts receive 1,000 credits.
servers:
  - url: https://api.blitz-api.ai
    description: Production server
security: []
tags:
  - name: Account
    description: API key info and health check.
  - name: Waterfall ICP Search
    description: Priority-based cascade search — find the best-match contact at a company.
  - name: Employee Finder
    description: Browse all employees at a single company with filters.
  - name: Company Search
    description: Search companies by industry, size, location, and keywords.
  - name: Job Search
    description: Search job postings by role, location, and company firmographics.
  - name: People Enrichment
    description: Enrich contacts with verified emails, phones, and reverse lookups.
  - name: Company Enrichment
    description: Enrich companies and resolve domain ↔ LinkedIn URL.
  - name: Utilities
    description: Helper endpoints (current date/time).
  - name: Changelog
    description: >-
      Public feed of API changes — breaking changes, features, fixes, and
      announcements.
paths:
  /v2/enrichment/person:
    post:
      tags:
        - People Enrichment
      summary: Person Enrichment
      description: >-
        Retrieve a professional's full profile and entire career history from
        their LinkedIn profile URL.
      operationId: postV2EnrichmentPerson
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                person_linkedin_url:
                  type: string
                  description: LinkedIn profile URL of the person to enrich.
                  example: https://www.linkedin.com/in/antoine-blitz-5581b7373
              required:
                - person_linkedin_url
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                example:
                  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
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                example:
                  success: false
                  message: >-
                    Invalid API key, please provide a valid API key in the
                    'x-api-key' header
        '402':
          description: Payment Required
          content:
            application/json:
              schema:
                type: object
                example:
                  success: false
                  message: >-
                    Fair Use limit reached. Upgrade your plan at
                    app.blitz-api.ai/billing or contact support to increase your
                    monthly capacity.
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                type: object
                example:
                  success: false
                  message: Not Found
        '429':
          description: Too Many Requests
          content:
            application/json:
              schema:
                type: object
                example:
                  success: false
                  message: Rate limit exceeded, please try again later
      security:
        - APIKey: []
components:
  securitySchemes:
    APIKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Blitz API Key. Get one from https://app.blitz-api.ai

````