> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryhuntr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Find a company's LinkedIn page URL

> **Requires `x-api-key` header.**

Rate limit: 5 requests/second per API key.

Find a company's LinkedIn page URL from its domain or company name. Returns the company page URL and match status when found.

**Price:** $0.012 when a company page URL is found. Free when not found (`price: 0`, credits refunded).



## OpenAPI

````yaml /openapi.json post /company-linkedin-url
openapi: 3.0.3
info:
  title: Huntr — The GTM Intelligence API
  description: >-
    Give AI agents company, people, contact, and web intelligence through one
    API. Search accounts, build targeted lists, enrich leads, find contacts, and
    uncover buying signals.


    **Authentication:** Authenticated endpoints require an `x-api-key` header
    with your Huntr API key. Get a key by signing up via `POST /keys/create`.
    Public endpoints (pricing, sign-up, health) work without a key.


    **Rate limit:** 5 requests/second per API key on authenticated endpoints.
  version: 2.0.0
servers:
  - url: https://api.tryhuntr.com
security: []
tags:
  - name: Research
    description: >-
      Research one company, person, team, or focused business question and
      return a sales-ready answer. Lite, standard, and deep tiers.
  - name: Companies
    description: >-
      Search companies and enrich firmographics. Per-result pricing on search;
      count endpoints are free.
  - name: People
    description: >-
      Search people and enrich contacts — work email, phone, and related lookup
      endpoints.
  - name: LinkedIn
    description: >-
      LinkedIn URL discovery, company and profile pages, posts, reactions, and
      comments.
  - name: X
    description: X profiles, posts, search results, and thread context.
  - name: Web
    description: >-
      Find and analyze pages on a domain, plus tech stack, domain contacts, and
      job postings.
  - name: Account
    description: >-
      Sign up, verify email, recover keys, check balance, view usage, add
      credits, and read the public pricing matrix.
  - name: System
    description: Health check.
paths:
  /company-linkedin-url:
    post:
      tags:
        - LinkedIn
      summary: Find a company's LinkedIn page URL
      description: >-
        **Requires `x-api-key` header.**


        Rate limit: 5 requests/second per API key.


        Find a company's LinkedIn page URL from its domain or company name.
        Returns the company page URL and match status when found.


        **Price:** $0.012 when a company page URL is found. Free when not found
        (`price: 0`, credits refunded).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                domain:
                  type: string
                  description: >-
                    Company domain, e.g. `stripe.com`. Provide domain or
                    company.
                company:
                  type: string
                  description: Company name when domain is unknown, e.g. `Stripe`.
            example:
              domain: stripe.com
      responses:
        '200':
          description: LinkedIn company URL lookup complete.
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  request_id:
                    type: string
                  domain:
                    type: string
                    description: Present when domain was used.
                  company:
                    type: string
                    description: Present when company name was used.
                  result:
                    type: object
                    properties:
                      companyUrl:
                        type: string
                        nullable: true
                        description: LinkedIn company page URL when found.
                      status:
                        type: string
                        description: FOUND or NOT_FOUND.
                  price:
                    type: number
                    description: $0.012 when a company page URL is found; 0 when not found.
                  credits_remaining:
                    type: number
              examples:
                found:
                  summary: Company page found
                  value:
                    success: true
                    request_id: req_1746123456_cl1x2y
                    domain: stripe.com
                    result:
                      status: FOUND
                      companyUrl: https://www.linkedin.com/company/stripe
                    price: 0.012
                    credits_remaining: 4.988
                not_found:
                  summary: No company page found
                  value:
                    success: true
                    request_id: req_1746123456_cl2x3y
                    company: Unknown Corp XYZ
                    result:
                      status: NOT_FOUND
                      companyUrl: null
                    price: 0
                    credits_remaining: 5
        '400':
          description: Missing or invalid input.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Insufficient credits.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Lookup failed. Credits are refunded automatically.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
      required:
        - error
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on
        all authenticated requests.

````