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

# /mynavi/jobs

> Get a Mynavi Tenshoku (マイナビ転職) job posting by its jobinfo slug (or job URL): job title and catch copy, employment type, job category and industry, posted/expiry dates, full job description, candidate requirements, salary text and min/max annual salary, first-year income, raises and bonuses, allowances, working hours, work location and structured locations, access, nearest station, holidays, benefits, planned hiring count, feature tags, application method, post-application contact timeline, document screening points, selection process, interview count and location, the recruiter inquiry block (company, address, phone, contact person), images, and the hiring company (name, website, industry, founding date, capital, employee count, representative, revenue, business description, head-office address).

**Price:** 10 credits

**⚠️ Common errors:** 412: Job posting not found (well-formed slug but the job page does not exist or has been taken down)



## OpenAPI

````yaml /openapi/jobs.json post /api/mynavi/jobs
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/mynavi/jobs:
    post:
      tags:
        - /mynavi
      summary: /mynavi/jobs
      description: >-
        Get a Mynavi Tenshoku (マイナビ転職) job posting by its jobinfo slug (or job
        URL): job title and catch copy, employment type, job category and
        industry, posted/expiry dates, full job description, candidate
        requirements, salary text and min/max annual salary, first-year income,
        raises and bonuses, allowances, working hours, work location and
        structured locations, access, nearest station, holidays, benefits,
        planned hiring count, feature tags, application method, post-application
        contact timeline, document screening points, selection process,
        interview count and location, the recruiter inquiry block (company,
        address, phone, contact person), images, and the hiring company (name,
        website, industry, founding date, capital, employee count,
        representative, revenue, business description, head-office address).


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Job posting not found (well-formed slug but
        the job page does not exist or has been taken down)
      operationId: __api_mynavi_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MynaviJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MynaviJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MynaviJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
      type: object
      required:
        - job
    MynaviJob:
      properties:
        '@type':
          type: string
          default: MynaviJob
        id:
          type: string
        display_id:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        catch_copy:
          anyOf:
            - type: string
            - type: 'null'
        employment_type:
          anyOf:
            - type: string
            - type: 'null'
        job_category:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        posted_at:
          anyOf:
            - type: string
            - type: 'null'
        valid_through:
          anyOf:
            - type: string
            - type: 'null'
        requirements:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        salary_min:
          anyOf:
            - type: integer
            - type: 'null'
        salary_max:
          anyOf:
            - type: integer
            - type: 'null'
        first_year_income:
          anyOf:
            - type: string
            - type: 'null'
        raise_bonus:
          anyOf:
            - type: string
            - type: 'null'
        allowances:
          anyOf:
            - type: string
            - type: 'null'
        work_hours:
          anyOf:
            - type: string
            - type: 'null'
        work_location:
          anyOf:
            - type: string
            - type: 'null'
        locations:
          items:
            type: string
          type: array
          default: []
        access:
          anyOf:
            - type: string
            - type: 'null'
        nearest_station:
          anyOf:
            - type: string
            - type: 'null'
        holidays:
          anyOf:
            - type: string
            - type: 'null'
        benefits:
          anyOf:
            - type: string
            - type: 'null'
        hiring_count:
          anyOf:
            - type: string
            - type: 'null'
        features:
          items:
            type: string
          type: array
          default: []
        application_method:
          anyOf:
            - type: string
            - type: 'null'
        response_after_application:
          anyOf:
            - type: string
            - type: 'null'
        screening_points:
          anyOf:
            - type: string
            - type: 'null'
        selection_process:
          anyOf:
            - type: string
            - type: 'null'
        interview_count:
          anyOf:
            - type: string
            - type: 'null'
        interview_location:
          anyOf:
            - type: string
            - type: 'null'
        inquiry:
          anyOf:
            - $ref: '#/components/schemas/MynaviJobInquiry'
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        company:
          anyOf:
            - $ref: '#/components/schemas/MynaviJobCompany'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MynaviJobInquiry:
      properties:
        '@type':
          type: string
          default: MynaviJobInquiry
        company:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        contact:
          anyOf:
            - type: string
            - type: 'null'
        text:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    MynaviJobCompany:
      properties:
        '@type':
          type: string
          default: MynaviJobCompany
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        website:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        established:
          anyOf:
            - type: string
            - type: 'null'
        capital:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: string
            - type: 'null'
        representative:
          anyOf:
            - type: string
            - type: 'null'
        revenue:
          anyOf:
            - type: string
            - type: 'null'
        business:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - 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

````