Skip to content

Instantly share code, notes, and snippets.

@joergrech
Last active January 7, 2024 10:58
Show Gist options
  • Save joergrech/a60d362bb8e156380901aee3839b511b to your computer and use it in GitHub Desktop.
Save joergrech/a60d362bb8e156380901aee3839b511b to your computer and use it in GitHub Desktop.
Techmap API usage examples

Here are several examples for how to use Techmap's Daily Job Postings API hosted on RapidAPI. More information can be found on our website Job Data Feeds & API website, the Swagger / OpenAPI documentation for Techmap's API, or on RapidAPI's page for Techmap's API.

Remote jobs in core US Timezones (UTC-8 to UTC-5):

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01&page=1​&workPlace=remote​&timezoneMin=-8​&timezoneMax=-5' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'

Jobs in southern Netherlands below latitude 52.25:

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01​&page=1​&countryCode=nl​&geoTopLeftLat=52.25​&geoTopLeftLng=0​&geoBottomRightLat=32.25​&geoBottomRightLng=10' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'

Jobs in the Healthcare industry of the United Kingdom:

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01​&page=1​&countryCode=uk​&industry=healthcare' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'

Jobs for Java Developers in San Francisco:

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01​&page=1​&skills=Java​&occupation=java,programmer​&geoPointLat=37.757​&geoPointLng=-122.449​&geoDistance=100mi' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'

Jobs for JavaScript Developers in New York, USA:

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01​&page=1​&skills=JavaScript​&countryCode=us​&city=New%20York' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'

Jobs in English language located in Germany:

curl --request GET \
	--url 'https://daily-international-job-postings.p.rapidapi.com/api/v2/jobs/search?​dateCreated=2023-11-01​&page=1​&countryCode=de​&language=en' \
	--header 'X-RapidAPI-Host: daily-international-job-postings.p.rapidapi.com' \
	--header 'X-RapidAPI-Key: <YOUR_API_KEY_FROM_RAPIDAPI>'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment