Discover/amazon.jobs API
live

amazon.jobs APIamazon.jobs

Search Amazon job listings by keyword, location, and category. Get full job details, team info, and qualifications via 3 structured endpoints.

Endpoints
3
Updated
10d ago
Try it
City filter (e.g., 'Seattle', 'San Francisco')
Sort order: 'relevant' or 'recent'
Number of results per page (max varies, typically 10-100)
Search keyword/query (e.g., 'software engineer', 'data scientist')
Pagination offset (0-based)
State/region abbreviation filter (e.g., 'WA', 'CA', 'NSW')
3-letter country code filter (e.g., 'USA', 'GBR', 'IND', 'AUS'). Uses ISO 3166-1 alpha-3 c
Job category filter (e.g., 'Software Development', 'Data Science'). Use get_job_categories
api.parse.bot/scraper/c8e2ace2-fff0-4b07-88af-334f1ccb52ec/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c8e2ace2-fff0-4b07-88af-334f1ccb52ec/search_jobs?limit=5&query=software+engineer&offset=10&category=Data+Science' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search for Amazon job listings with keyword search, location/category filters, and pagination. Returns job listings with details and total hit count.

Input
ParamTypeDescription
citystringCity filter (e.g., 'Seattle', 'San Francisco')
sortstringSort order: 'relevant' or 'recent'
limitintegerNumber of results per page (max varies, typically 10-100)
querystringSearch keyword/query (e.g., 'software engineer', 'data scientist')
offsetintegerPagination offset (0-based)
regionstringState/region abbreviation filter (e.g., 'WA', 'CA', 'NSW')
countrystring3-letter country code filter (e.g., 'USA', 'GBR', 'IND', 'AUS'). Uses ISO 3166-1 alpha-3 codes as returned in the country_code field of job results.
categorystringJob category filter (e.g., 'Software Development', 'Data Science'). Use get_job_categories for valid values.
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job objects with id, title, company, location, category, posted_date, and other fields",
    "limit": "integer, results per page requested",
    "offset": "integer, current pagination offset",
    "total_hits": "integer, total number of matching jobs",
    "jobs_returned": "integer, number of jobs in this response"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "id": "3092179",
          "city": "San Francisco",
          "state": "CA",
          "title": "Software Engineer",
          "company": "Twitch Interactive, Inc. - D48",
          "category": "Software Development",
          "job_path": "/en/jobs/3092179/software-engineer",
          "location": "US, CA, San Francisco",
          "job_family": "Software Development",
          "posted_date": "September 24, 2025",
          "country_code": "USA",
          "updated_time": "5 days",
          "schedule_type": "full-time",
          "url_next_step": "https://account.amazon.com/jobs/3092179/apply",
          "business_category": "subsidiaries",
          "description_short": "If you are interested in this position...",
          "normalized_location": "San Francisco, California, USA",
          "basic_qualifications": "- Bachelor's degree...",
          "preferred_qualifications": "- Experience with AWS..."
        }
      ],
      "limit": 5,
      "offset": 0,
      "total_hits": 1702,
      "jobs_returned": 5
    },
    "status": "success"
  }
}

About the amazon.jobs API

The Amazon Jobs API provides 3 endpoints for searching and retrieving job listings from amazon.jobs. Use search_jobs to query across thousands of open positions with keyword, location, category, and country filters, then call get_job_details with a specific iCIMS job ID to retrieve the full job description, qualifications, team metadata, and location details for any listing.

Searching Jobs

The search_jobs endpoint accepts a query string (e.g., 'software engineer') alongside optional filters for city, region (state abbreviation like 'WA'), country (ISO 3166-1 alpha-3 codes like 'USA' or 'GBR'), and category. Results are paginated via offset and limit parameters, and the response includes total_hits so you can calculate page counts before fetching subsequent pages. Sort order can be set to 'relevant' or 'recent' depending on your use case.

Job Details

Each object in the jobs array from search_jobs includes an id field — the iCIMS job ID — which you pass to get_job_details. That endpoint returns the full job record: title, company, category, city, state, location, job_path, a team object with team metadata, an internal uuid, and the complete job description and qualifications text not available in search results.

Categories

The get_job_categories endpoint returns a jobCategories array, where each entry includes an arsIdentifier, displayName, identifier, description, and url. These identifier values map directly to the category filter in search_jobs, so you can enumerate all valid categories before constructing filtered queries rather than guessing category strings.

Common use cases
  • Build a job alert system that polls search_jobs with specific keywords and notifies users when new listings appear via the posted_date field
  • Aggregate Amazon job openings by country and region using the country and region filters to produce geographic hiring dashboards
  • Classify and count open roles by team or category using get_job_categories and the category field returned in search results
  • Feed a recruiting CRM with structured job data including title, location, company, and job_path for each open position
  • Track hiring volume over time by recording total_hits for repeated queries across different categories or locations
  • Surface relevant Amazon positions in a developer-facing job board filtered to 'Software Development' or 'Data Science' categories
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Amazon Jobs have an official public developer API?+
Amazon does not offer a public developer API for amazon.jobs. There is no documented REST or GraphQL API available to external developers for querying job listings programmatically.
What does `get_job_details` return beyond what `search_jobs` provides?+
get_job_details returns the full job record for a single position, including the complete job description text, qualifications, a team object with team metadata, and an internal uuid. The search_jobs endpoint returns a summary view — title, company, location, category, posted_date, and id — but omits the full description and team details that get_job_details exposes.
How does pagination work in `search_jobs`?+
The search_jobs endpoint uses offset and limit parameters. The response includes total_hits (total matching jobs), jobs_returned (jobs in the current response), and the offset you sent. To retrieve the next page, increment offset by limit. For example, with limit=10, page two starts at offset=10.
Does the API return saved job applications or candidate profile data?+
No. The API covers public job listings — search results, category metadata, and job detail pages. Candidate profiles, saved jobs, application status, and recruiter-side data are not exposed. You can fork this API on Parse and revise it to add an endpoint if a relevant data surface becomes accessible.
Can I filter jobs by salary or compensation range?+
The current endpoints do not include a salary or compensation filter, and compensation fields are not present in the search_jobs or get_job_details response shapes. The API covers job metadata, description text, location, and team fields. You can fork this API on Parse and revise it to add compensation filtering if Amazon Jobs exposes that data for a specific role type.
Page content last updated . Spec covers 3 endpoints from amazon.jobs.
Related APIs in JobsSee all →
ca.indeed.com API
Search for jobs across Canada and access detailed job listings, company profiles, employee reviews, and salary information all in one place. Build recruitment tools, career research applications, or job market analysis platforms with comprehensive employment data from Indeed Canada.
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
naukri.com API
naukri.com API
nvidia.com API
nvidia.com API
airtasker.com API
Search and browse Airtasker tasks by location, category, price, and keywords, then access detailed task information and user profiles. Get location suggestions and category recommendations to discover available work and service opportunities in your area.
usajobs.gov API
Search federal job openings and view detailed job announcements from USAJobs.gov, plus access historical job data and reference codes to help you find the right government position. Filter and explore thousands of federal career opportunities with comprehensive job details all in one place.
Amazon Jobs API – Search & Browse Listings · Parse