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

# /linkedin/search/sql/companies

> Bulk-discover companies in the cached ~70M-record LinkedIn DB. Use for ICP discovery, competitor/lookalike lists, and account-list building.

**Price:** 1 credit per 10 results



## OpenAPI

````yaml /openapi/professional-network.json post /api/linkedin/search/sql/companies
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/linkedin/search/sql/companies:
    post:
      tags:
        - LinkedIn Search
      summary: /linkedin/search/sql/companies
      description: >-
        Bulk-discover companies in the cached ~70M-record LinkedIn DB. Use for
        ICP discovery, competitor/lookalike lists, and account-list building.


        **Price:** 1 credit per 10 results
      operationId: __api_linkedin_search_sql_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LinkedinDBCompanySearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/LinkedinDBCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    LinkedinDBCompanySearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        keywords:
          type: string
          default: ''
        name:
          type: string
          default: ''
        alias:
          type: string
          default: ''
        urn:
          items:
            type: string
          type: array
          default: []
        website:
          type: string
          default: ''
        headquarter_location:
          type: string
          default: ''
        locations:
          type: string
          default: ''
        specialities:
          type: string
          default: ''
        hashtags:
          type: string
          default: ''
        similar_organizations:
          type: string
          default: ''
        industry:
          items:
            type: string
          type: array
          default: []
        industry_name:
          type: string
          default: ''
        employee_count_min:
          anyOf:
            - type: integer
            - type: 'null'
        employee_count_max:
          anyOf:
            - type: integer
            - type: 'null'
        founded_on_min:
          anyOf:
            - type: integer
            - type: 'null'
        founded_on_max:
          anyOf:
            - type: integer
            - type: 'null'
        last_modified_after:
          anyOf:
            - type: integer
            - type: 'null'
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        page_verification_status:
          anyOf:
            - type: boolean
            - type: 'null'
        headquarter_status:
          anyOf:
            - type: boolean
            - type: 'null'
        country_hq:
          items:
            type: string
          type: array
          default: []
        country_any:
          items:
            type: string
          type: array
          default: []
        has_website:
          anyOf:
            - type: boolean
            - type: 'null'
        has_description:
          anyOf:
            - type: boolean
            - type: 'null'
        min_description_length:
          anyOf:
            - type: integer
              minimum: 0
            - type: 'null'
        count:
          type: integer
          maximum: 1000
          exclusiveMinimum: 0
      type: object
      required:
        - count
    LinkedinDBCompany:
      properties:
        '@type':
          type: string
          default: LinkedinDBCompany
        urn:
          type: string
        name:
          type: string
        alias:
          type: string
        url:
          type: string
        website:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            type: string
          type: array
          default: []
        short_description:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        founded_on:
          anyOf:
            - type: integer
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        organizational_urn:
          anyOf:
            - type: string
            - type: 'null'
        page_verification_status:
          anyOf:
            - type: boolean
            - type: 'null'
        last_modified_at:
          anyOf:
            - type: integer
            - type: 'null'
        headquarter_status:
          anyOf:
            - type: boolean
            - type: 'null'
        headquarter_location:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        specialities:
          items:
            type: string
          type: array
          default: []
        is_active:
          anyOf:
            - type: boolean
            - type: 'null'
        employee_count_range:
          anyOf:
            - type: string
            - type: 'null'
        similar_organizations:
          items:
            type: string
          type: array
          default: []
        hashtags:
          items:
            type: string
          type: array
          default: []
        crunchbase_link:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - urn
        - name
        - alias
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````