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

# /wttj/companies/search

> Search Welcome to the Jungle companies by name or keyword, optionally filtered by sector, office country or a geo radius. Each result includes the company name, summary, logo and cover, sectors, tech stack, employee count, open-job count, labels, offices with coordinates and the public profile URL.

**Price:** 10 credits per 30 results

**⚠️ Common errors:** 412: No matching companies



## OpenAPI

````yaml /openapi/jobs.json post /api/wttj/companies/search
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/wttj/companies/search:
    post:
      tags:
        - /wttj
      summary: /wttj/companies/search
      description: >-
        Search Welcome to the Jungle companies by name or keyword, optionally
        filtered by sector, office country or a geo radius. Each result includes
        the company name, summary, logo and cover, sectors, tech stack, employee
        count, open-job count, labels, offices with coordinates and the public
        profile URL.


        **Price:** 10 credits per 30 results


        **⚠️ Common errors:** 412: No matching companies
      operationId: __api_wttj_companies_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WttjCompaniesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WttjCompanySearchHit'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WttjCompaniesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          default: ''
        count:
          type: integer
          minimum: 1
        language:
          $ref: '#/components/schemas/WttjLanguage'
          default: en
        sector:
          anyOf:
            - $ref: '#/components/schemas/WttjCompanySector'
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
              maximum: 90
              minimum: -90
            - type: 'null'
        longitude:
          anyOf:
            - type: number
              maximum: 180
              minimum: -180
            - type: 'null'
        radius:
          anyOf:
            - type: integer
              minimum: 1
            - type: 'null'
      type: object
      required:
        - count
    WttjCompanySearchHit:
      properties:
        '@type':
          type: string
          default: WttjCompanySearchHit
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        sectors:
          items:
            $ref: '#/components/schemas/WttjSectorEntity'
          type: array
          default: []
        tools:
          items:
            type: string
          type: array
          default: []
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        size:
          anyOf:
            - type: string
            - type: 'null'
        job_count:
          anyOf:
            - type: integer
            - type: 'null'
        labels:
          items:
            type: string
          type: array
          default: []
        offices:
          items:
            $ref: '#/components/schemas/WttjOffice'
          type: array
          default: []
        url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    WttjLanguage:
      type: string
      enum:
        - cs
        - en
        - es
        - fr
        - sk
    WttjCompanySector:
      type: string
      enum:
        - Tech
        - Banking / Insurance / Finance
        - Consulting / Audit
        - Health / Social / Environment
        - Advertising / Marketing / Agency
        - Culture / Media / Entertainment
        - Education / Training / Recruitment
        - Industry
        - Distribution
        - Food and Beverage
        - Fashion / Luxury / Beauty / Lifestyle
        - Real Estate
        - Mobility / Transport
        - Corporate Services
        - Hotel / Tourism / Leisure
        - Engineering
        - Nonprofit / Association
        - Architecture
        - Legal / Law
        - Public Administration
    WttjSectorEntity:
      properties:
        '@type':
          type: string
          default: WttjSectorEntity
        name:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        parent_name:
          anyOf:
            - type: string
            - type: 'null'
        parent_reference:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    WttjOffice:
      properties:
        '@type':
          type: string
          default: WttjOffice
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        district:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        is_headquarter:
          anyOf:
            - type: boolean
            - type: 'null'
      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

````