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

# Company Enrichment

> Retrieve a full company profile from a LinkedIn company 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="coin" color="blue">
  **Cost:** 1 credit per company enriched on Trial Plan
</Callout>

<Callout icon="coin" color="orange">
  **Free** on the Unlimited plan
</Callout>

Retrieve a full company profile from a LinkedIn company URL — name, industry, employee count, headquarters location, website, and more.

<Tip>
  If you only have a domain, run **Domain to Linkedin URL** first, then pipe the LinkedIn URL into this endpoint. Most other v2 endpoints (Waterfall ICP, Employee Finder) also accept LinkedIn URLs, so this resolution step unlocks the full pipeline.
</Tip>

<Card title="Enrichment workflow recipe" icon="layer-group" href="/guide/recipes/enrichment-workflow">
  Compose enrichment endpoints into a CRM-ready pipeline.
</Card>


## OpenAPI

````yaml api-reference/v2.openapi.json POST /v2/enrichment/company
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**: 5 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/company:
    post:
      tags:
        - Company Enrichment
      summary: Company Enrichment
      description: Retrieve a full company profile from a LinkedIn company URL.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                company_linkedin_url:
                  type: string
                  example: https://www.linkedin.com/company/blitz-api
              required:
                - company_linkedin_url
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                example:
                  found: true
                  company:
                    linkedin_url: https://www.linkedin.com/company/blitz-api
                    linkedin_id: 108037802
                    name: Blitzapi
                    about: >-
                      BlitzAPI provides enriched B2B data access through a suite
                      of flexible and high-performance APIs. 10+ public
                      endpoints, covering- People & Company Search - Email &
                      Phone Validation - Contact & Company Enrichment - LinkedIn
                      Matching - Smart Waterfall ICP API-first + LLM-friendly +
                      Low-code compatible Used by Growth & Revenue Teams
                    specialties: null
                    industry: Technology; Information and Internet
                    type: Privately Held
                    size: 1-10
                    employees_on_linkedin: 3
                    followers: 6
                    founded_year: null
                    hq:
                      city: Paris
                      state: null
                      postcode: null
                      country_code: FR
                      country_name: France
                      region: null
                      continent: null
                      street: null
                    domain: blitz-api.ai
                    website: https://blitz-api.ai
        '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
        '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

````