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

> Search Welcome to the Jungle job postings by keyword and filters — contract type, remote policy, profession category and sub-category, sector/industry, experience and education levels, office country, company and a geo radius. 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: No matching job postings



## OpenAPI

````yaml /openapi/jobs.json post /api/wttj/jobs/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/jobs/search:
    post:
      tags:
        - /wttj
      summary: /wttj/jobs/search
      description: >-
        Search Welcome to the Jungle job postings by keyword and filters —
        contract type, remote policy, profession category and sub-category,
        sector/industry, experience and education levels, office country,
        company and a geo radius. 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: No matching job postings
      operationId: __api_wttj_jobs_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/WttjJobsSearchPayload'
      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:
    WttjJobsSearchPayload:
      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
        sort:
          $ref: '#/components/schemas/WttjJobsSort'
          default: relevance
        contract_type:
          anyOf:
            - $ref: '#/components/schemas/WttjContractType'
            - type: 'null'
        remote:
          anyOf:
            - $ref: '#/components/schemas/WttjRemote'
            - type: 'null'
        profession_category:
          anyOf:
            - $ref: '#/components/schemas/WttjProfessionCategory'
            - type: 'null'
        profession_sub_category:
          anyOf:
            - type: string
            - type: 'null'
        sector:
          anyOf:
            - $ref: '#/components/schemas/WttjSector'
            - type: 'null'
        sector_reference:
          anyOf:
            - type: string
            - type: 'null'
        experience_level_min:
          anyOf:
            - type: number
              minimum: 0
            - type: 'null'
        education_level:
          anyOf:
            - $ref: '#/components/schemas/WttjEducationLevel'
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        organization_alias:
          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
    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
    WttjJobsSort:
      type: string
      enum:
        - relevance
        - most_recent
    WttjContractType:
      type: string
      enum:
        - full_time
        - apprenticeship
        - temporary
        - internship
        - freelance
        - part_time
        - vie
        - graduate_program
        - volunteer
        - idv
        - other
    WttjRemote:
      type: string
      enum:
        - 'no'
        - partial
        - punctual
        - fulltime
        - unknown
    WttjProfessionCategory:
      type: string
      enum:
        - sales-customer-service-5MzIw
        - tech-engineering-3NjUy
        - business-finance-1MjQ4
        - project-product-management-xYmEw
        - hr-people-iZGMy
        - communication-marketing-advertising-wNDg5
        - maintenance-repair-lZDUy
        - transport-logistics-lMDVm
        - craftsmanship-and-manual-labor-yNGQw
        - fashion-5MzY5
        - healthcare-yMjNi
        - hospitality-4ZTdj
        - construction-jNzEz
        - consulting-strategy-iNDRl
        - legal-zYjg3
        - agriculture-agri-food-4YmNh
        - research-development-0OGVm
        - security-defense-jMzJm
        - education-wNTkx
        - culture-arts-wOTc2
    WttjSector:
      type: string
      enum:
        - tech-1
        - industry-1
        - banking-insurance-finance
        - distribution-1
        - consulting-audit
        - health-social-environment
        - culture-media-entertainment
        - advertising-marketing-agency
        - public-administration-1
        - food-and-beverage
        - engineering-1
        - education-training-recruitment
        - real-estate
        - fashion-luxury-beauty-lifestyle
        - mobility-transport
        - hotel-tourism-leisure
        - corporate-services
        - nonprofit-association
        - architecture-1
        - legal-law
    WttjEducationLevel:
      type: string
      enum:
        - no_diploma
        - cap
        - bep
        - bac
        - bac_1
        - bac_2
        - bac_3
        - bac_4
        - bac_5
        - phd
    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

````