> ## 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/jobs/related

> List Welcome to the Jungle job postings related to a given job (same profession), excluding the source job. Each result includes the title, summary, contract type, remote policy, salary, profession, sectors, benefits, offices with coordinates, the company and the public job URL.

**Price:** 10 credits per 30 results

**⚠️ Common errors:** 412: Job posting not found or no related jobs



## OpenAPI

````yaml /openapi/jobs.json post /api/wttj/jobs/related
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/jobs/related:
    post:
      tags:
        - /wttj
      summary: /wttj/jobs/related
      description: >-
        List Welcome to the Jungle job postings related to a given job (same
        profession), excluding the source job. Each result includes the title,
        summary, contract type, remote policy, salary, profession, sectors,
        benefits, offices with coordinates, the company and the public job URL.


        **Price:** 10 credits per 30 results


        **⚠️ Common errors:** 412: Job posting not found or no related jobs
      operationId: __api_wttj_jobs_related_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WttjJobsRelatedPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WttjJobSearchHit'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    WttjJobsRelatedPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        language:
          $ref: '#/components/schemas/WttjLanguage'
          default: en
      type: object
      required:
        - job
        - count
    WttjJobSearchHit:
      properties:
        '@type':
          type: string
          default: WttjJobSearchHit
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        reference:
          anyOf:
            - type: string
            - type: 'null'
        wk_reference:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        contract_type:
          anyOf:
            - type: string
            - type: 'null'
        remote:
          anyOf:
            - type: string
            - type: 'null'
        salary_min:
          anyOf:
            - type: integer
            - type: 'null'
        salary_max:
          anyOf:
            - type: integer
            - type: 'null'
        salary_currency:
          anyOf:
            - type: string
            - type: 'null'
        salary_period:
          anyOf:
            - type: string
            - type: 'null'
        experience_level_min:
          anyOf:
            - type: number
            - type: 'null'
        education_level:
          anyOf:
            - type: string
            - type: 'null'
        profession:
          anyOf:
            - $ref: '#/components/schemas/WttjProfession'
            - type: 'null'
        sectors:
          items:
            $ref: '#/components/schemas/WttjSectorEntity'
          type: array
          default: []
        key_missions:
          items:
            type: string
          type: array
          default: []
        benefits:
          items:
            type: string
          type: array
          default: []
        offices:
          items:
            $ref: '#/components/schemas/WttjOffice'
          type: array
          default: []
        organization_name:
          anyOf:
            - type: string
            - type: 'null'
        organization_alias:
          anyOf:
            - type: string
            - type: 'null'
        organization_image:
          anyOf:
            - type: string
            - type: 'null'
        published_at:
          anyOf:
            - type: string
            - type: 'null'
        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
    WttjProfession:
      properties:
        '@type':
          type: string
          default: WttjProfession
        category_name:
          anyOf:
            - type: string
            - type: 'null'
        category_reference:
          anyOf:
            - type: string
            - type: 'null'
        sub_category_name:
          anyOf:
            - type: string
            - type: 'null'
        sub_category_reference:
          anyOf:
            - type: string
            - type: 'null'
        pivot_name:
          anyOf:
            - type: string
            - type: 'null'
        pivot_reference:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    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

````