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

# /seek/jobs

> Get a full SEEK job ad by id or job URL: title, abstract, full HTML and plain-text description, salary, classification and subclassification, work type, location, advertiser (id, name, verified status, registration date), status and expiry, phone number, listed and expiry dates, company branding logo and cover images, promotional video, key selling-point bullets, screening questions, and recruiter contacts.

**Price:** 10 credits

**⚠️ Common errors:** 412: Job not found or no longer advertised (well-formed but nonexistent or expired job id)



## OpenAPI

````yaml /openapi/jobs.json post /api/seek/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/seek/jobs:
    post:
      tags:
        - /seek
      summary: /seek/jobs
      description: >-
        Get a full SEEK job ad by id or job URL: title, abstract, full HTML and
        plain-text description, salary, classification and subclassification,
        work type, location, advertiser (id, name, verified status, registration
        date), status and expiry, phone number, listed and expiry dates, company
        branding logo and cover images, promotional video, key selling-point
        bullets, screening questions, and recruiter contacts.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Job not found or no longer advertised
        (well-formed but nonexistent or expired job id)
      operationId: __api_seek_jobs_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SeekJobsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SeekJob'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SeekJobsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        job:
          type: string
          minLength: 1
      type: object
      required:
        - job
    SeekJob:
      properties:
        '@type':
          type: string
          default: SeekJob
        id:
          type: string
        url:
          type: string
        abstract:
          anyOf:
            - type: string
            - type: 'null'
        description_html:
          anyOf:
            - type: string
            - type: 'null'
        salary:
          anyOf:
            - type: string
            - type: 'null'
        classification:
          anyOf:
            - type: string
            - type: 'null'
        classification_id:
          anyOf:
            - type: string
            - type: 'null'
        subclassification:
          anyOf:
            - type: string
            - type: 'null'
        subclassification_id:
          anyOf:
            - type: string
            - type: 'null'
        work_type:
          anyOf:
            - type: string
            - type: 'null'
        work_type_ids:
          items:
            type: string
          type: array
          default: []
        location:
          anyOf:
            - type: string
            - type: 'null'
        location_ids:
          items:
            type: string
          type: array
          default: []
        advertiser:
          anyOf:
            - $ref: '#/components/schemas/SeekJobAdvertiser'
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_expired:
          anyOf:
            - type: boolean
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        is_link_out:
          anyOf:
            - type: boolean
            - type: 'null'
        is_private_advertiser:
          anyOf:
            - type: boolean
            - type: 'null'
        has_role_requirements:
          anyOf:
            - type: boolean
            - type: 'null'
        phone_number:
          anyOf:
            - type: string
            - type: 'null'
        listed_at:
          anyOf:
            - type: string
            - type: 'null'
        expires_at:
          anyOf:
            - type: string
            - type: 'null'
        posted_time:
          anyOf:
            - type: string
            - type: 'null'
        share_url:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        cover:
          anyOf:
            - type: string
            - type: 'null'
        thumbnail:
          anyOf:
            - type: string
            - type: 'null'
        video_url:
          anyOf:
            - type: string
            - type: 'null'
        bullets:
          items:
            type: string
          type: array
          default: []
        questions:
          items:
            type: string
          type: array
          default: []
        contacts:
          items:
            $ref: '#/components/schemas/SeekJobContact'
          type: array
          default: []
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SeekJobAdvertiser:
      properties:
        '@type':
          type: string
          default: SeekJobAdvertiser
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
        registration_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    SeekJobContact:
      properties:
        '@type':
          type: string
          default: SeekJobContact
        type:
          anyOf:
            - type: string
            - type: 'null'
        value:
          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

````