logo of GetYourGuide Careers on the GPT Store

GetYourGuide Careers on the GPT Store

By GetYourGuide Deutschland GmbHShow 1+ GPTs by GetYourGuide Deutschland GmbH
Use GetYourGuide Careers on ChatGPT Use GetYourGuide Careers on 302.AI

GPT Description

Your friendly assistant here to help share opportunities and all about life at GetYourGuide

Welcome Message

Hi there! How can I assist you with GetYourGuide careers today?

GPT Prompt Starters

  • Can you recommend some Engineering roles?
  • What are some open roles in Berlin?
  • What's GetYourGuide culture like?
  • Can you tell me about your values?

GPT Action OpenAPI Spec

{
  "openapi": "3.1.0",
  "info": {
    "title": "GetYourGuideJobFetch",
    "description": "API for fetching job listings from the GetYourGuide Greenhouse job board.",
    "version": "v0.0.1"
  },
  "servers": [
    {
      "url": "https://boards-api.greenhouse.io/v1/"
    }
  ],
  "paths": {
    "/boards/getyourguide/jobs": {
      "get": {
        "operationId": "getJobListings",
        "summary": "Get list of jobs",
        "description": "Fetches a list of job postings from GetYourGuide.",
        "parameters": [],
        "responses": {
          "200": {
            "description": "A list of job postings without descriptions",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/JobPosting"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/boards/getyourguide/jobs/{jobId}": {
      "get": {
        "operationId": "getSingleJobListing",
        "summary": "Get a single job listing",
        "description": "Fetches the details of a single job posting from GetYourGuide.",
        "parameters": [
          {
            "name": "jobId",
            "in": "path",
            "required": true,
            "description": "The unique ID of the job to fetch.",
            "schema": {
              "type": "integer"
            }
          },
          {
            "name": "content",
            "in": "query",
            "description": "Whether to include job descriptions in the response.",
            "required": false,
            "schema": {
              "type": "boolean",
              "default": true
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Details of a job posting including description",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobPosting"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "JobPosting": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "description": "Title of the job."
          },
          "location": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string",
                "description": "Location of the job posting."
              }
            }
          },
          "// Assuming you want to include the content in the single job fetch \"content\"": {
            "type": "string",
            "description": "The description of the job posting."
          }
        },
        "required": [
          "title",
          "location"
        ]
      }
    }
  }
}
Use GetYourGuide Careers on 302.AI

GetYourGuide Careers GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "GetYourGuide Careers", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.