> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spott.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get posted jobs

> Get all publically posted jobs for a tenant.



## OpenAPI

````yaml /api-reference/openapi-public.json get /{publicTenantSlug}/vacancy-portal/jobs
openapi: 3.0.0
info:
  title: Spott API
  description: ''
  version: '1.0'
  contact: {}
servers:
  - url: https://api.gospott.com
security: []
tags:
  - name: public
    description: ''
paths:
  /{publicTenantSlug}/vacancy-portal/jobs:
    get:
      tags:
        - public
      summary: Get posted jobs
      description: Get all publically posted jobs for a tenant.
      operationId: getPublicJobs
      parameters:
        - name: publicTenantSlug
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicJobBoardPostingsDto'
components:
  schemas:
    PublicJobBoardPostingsDto:
      type: object
      properties:
        publicJobBoardPostings:
          type: array
          items:
            $ref: '#/components/schemas/PublicJobBoardPostingDto'
      required:
        - publicJobBoardPostings
    PublicJobBoardPostingDto:
      type: object
      properties:
        locationType:
          type: string
          nullable: true
          enum:
            - remote
            - hybrid
            - onsite
        employmentType:
          type: string
          nullable: true
          enum:
            - fullTime
            - partTime
            - temporary
            - internship
        id:
          type: string
        externalJobTitle:
          type: string
        jobDescription:
          type: string
        location:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/LocationDto'
        publishedAt:
          format: date-time
          type: string
          nullable: true
      required:
        - locationType
        - employmentType
        - id
        - externalJobTitle
        - jobDescription
        - location
        - publishedAt
    LocationDto:
      type: object
      properties:
        type:
          type: string
          nullable: true
          enum:
            - primary_home
            - secondary_home
            - primary_work
            - headquarters
            - regional_office
        street1:
          type: string
          nullable: true
        street2:
          type: string
          nullable: true
        postalCode:
          type: string
          nullable: true
        city:
          type: string
          nullable: true
        region:
          type: string
          nullable: true
        state:
          type: string
          nullable: true
        country:
          type: string
          nullable: true
        rawCityCountry:
          type: string
          nullable: true
        latitude:
          type: number
          nullable: true
        longitude:
          type: number
          nullable: true
        formattedAddress:
          type: string
          nullable: true
      required:
        - type
        - street1
        - street2
        - postalCode
        - city
        - region
        - state
        - country
        - rawCityCountry
        - latitude
        - longitude
        - formattedAddress

````