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

> Get a Welcome to the Jungle company profile by its slug or profile URL. Returns the company name, logo and cover images, business sectors with their parent groups, office locations with geo coordinates and headquarter flag, employee count, website, workplace-equality indexes, labels and the public profile URL.

**Price:** 1 credit

**⚠️ Common errors:** 412: Company not found



## OpenAPI

````yaml /openapi/jobs.json post /api/wttj/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/wttj/companies:
    post:
      tags:
        - /wttj
      summary: /wttj/companies
      description: >-
        Get a Welcome to the Jungle company profile by its slug or profile URL.
        Returns the company name, logo and cover images, business sectors with
        their parent groups, office locations with geo coordinates and
        headquarter flag, employee count, website, workplace-equality indexes,
        labels and the public profile URL.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Company not found
      operationId: __api_wttj_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WttjCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WttjCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WttjCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
        language:
          $ref: '#/components/schemas/WttjLanguage'
          default: en
      type: object
      required:
        - company
    WttjCompany:
      properties:
        '@type':
          type: string
          default: WttjCompany
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        profile_type:
          anyOf:
            - type: string
            - type: 'null'
        default_language:
          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: []
        offices:
          items:
            $ref: '#/components/schemas/WttjOffice'
          type: array
          default: []
        employee_count:
          anyOf:
            - type: integer
            - type: 'null'
        website_url:
          anyOf:
            - type: string
            - type: 'null'
        equality_index:
          anyOf:
            - $ref: '#/components/schemas/WttjEqualityIndex'
            - type: 'null'
        labels:
          items:
            type: string
          type: array
          default: []
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          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
    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
    WttjEqualityIndex:
      properties:
        '@type':
          type: string
          default: WttjEqualityIndex
        equality_index:
          anyOf:
            - type: integer
            - type: 'null'
        gender_pay_gap:
          anyOf:
            - type: integer
            - type: 'null'
        gap_in_promotions:
          anyOf:
            - type: integer
            - type: 'null'
        gap_in_annual_raises:
          anyOf:
            - type: integer
            - type: 'null'
        maternity_leave_return_raise:
          anyOf:
            - type: integer
            - type: 'null'
        equality_among_highest_earners:
          anyOf:
            - type: integer
            - type: 'null'
        workforce_range:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: integer
            - type: 'null'
        published:
          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

````