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

# /simplyhired/jobs

> Get SimplyHired job details by job key

**Price:** 10 credits

**⚠️ Common errors:** 412: Job not found or no longer listed



## OpenAPI

````yaml /openapi/jobs.json post /api/simplyhired/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/simplyhired/jobs:
    post:
      tags:
        - /simplyhired
      summary: /simplyhired/jobs
      description: |-
        Get SimplyHired job details by job key

        **Price:** 10 credits

        **⚠️ Common errors:** 412: Job not found or no longer listed
      operationId: __api_simplyhired_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SimplyhiredJobPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SimplyhiredJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SimplyhiredJobPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
        country:
          $ref: '#/components/schemas/SimplyhiredCountry'
          default: US
      type: object
      required:
        - job
    SimplyhiredJob:
      properties:
        '@type':
          type: string
          default: SimplyhiredJob
        id:
          type: string
        normalized_title:
          anyOf:
            - type: string
            - type: 'null'
        display_title:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        job_types:
          items:
            type: string
          type: array
          default: []
        work_settings:
          items:
            type: string
          type: array
          default: []
        description_text:
          anyOf:
            - type: string
            - type: 'null'
        employer:
          anyOf:
            - $ref: '#/components/schemas/SimplyhiredEmployer'
            - type: 'null'
        salary:
          anyOf:
            - $ref: '#/components/schemas/SimplyhiredSalary'
            - type: 'null'
        benefits:
          items:
            type: string
          type: array
          default: []
        qualifications:
          items:
            type: string
          type: array
          default: []
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        expiration_at:
          anyOf:
            - type: integer
            - type: 'null'
        is_expired:
          anyOf:
            - type: boolean
            - type: 'null'
        apply_url:
          anyOf:
            - type: string
            - type: 'null'
        is_indeed_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        is_sponsored:
          anyOf:
            - type: boolean
            - type: 'null'
        similar_jobs:
          items:
            $ref: '#/components/schemas/SimplyhiredSimilarJob'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SimplyhiredCountry:
      type: string
      enum:
        - US
        - GB
        - CA
        - IE
        - IN
        - DE
        - FR
        - ES
        - IT
        - NL
        - AT
        - BE
        - CH
        - PT
        - SE
        - BR
        - AR
        - MX
        - AU
    SimplyhiredEmployer:
      properties:
        '@type':
          type: string
          default: SimplyhiredEmployer
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        company_page_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SimplyhiredSalary:
      properties:
        '@type':
          type: string
          default: SimplyhiredSalary
        display:
          anyOf:
            - type: string
            - type: 'null'
        salary_from:
          anyOf:
            - type: number
            - type: 'null'
        salary_to:
          anyOf:
            - type: number
            - type: 'null'
        period:
          anyOf:
            - type: string
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SimplyhiredSimilarJob:
      properties:
        '@type':
          type: string
          default: SimplyhiredSimilarJob
        id:
          type: string
        company:
          anyOf:
            - type: string
            - type: 'null'
        company_rating:
          anyOf:
            - type: number
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        snippet:
          anyOf:
            - type: string
            - type: 'null'
        job_types:
          items:
            type: string
          type: array
          default: []
        benefits:
          items:
            type: string
          type: array
          default: []
        is_sponsored:
          anyOf:
            - type: boolean
            - type: 'null'
        is_indeed_apply:
          anyOf:
            - type: boolean
            - type: 'null'
        posted_at:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
    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

````