Discover/careers.dhl.com API
live

careers.dhl.com APIcareers.dhl.com

Search DHL Group's global job listings by keyword, location, and title pattern. Returns job titles, locations, categories, career levels, and apply URLs.

Endpoints
2
Updated
2mo ago
Try it
Page number (1-based)
Search keywords (e.g., 'Marketing', 'Analytics', 'E-Commerce')
Number of results per page (max 100)
api.parse.bot/scraper/7cf237b1-8b1d-42d5-ba7c-9a25be343304/<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/7cf237b1-8b1d-42d5-ba7c-9a25be343304/search_jobs?page=1&keywords=Marketing&page_size=10' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for jobs on DHL careers by keyword with pagination. Returns job listings including title, location, category, career level, description teaser, skills, and apply URL.

Input
ParamTypeDescription
pageintegerPage number (1-based)
keywordsstringSearch keywords (e.g., 'Marketing', 'Analytics', 'E-Commerce')
page_sizeintegerNumber of results per page (max 100)
Response
{
  "type": "object",
  "fields": {
    "jobs": "array of job objects with fields: job_id, title, location, city, state, country, city_state_country, category, career_level, work_hours, posted_date, date_created, description_teaser, apply_url, multi_location, multi_category, is_multi_location, badge, req_id, skills",
    "page": "integer current page number",
    "page_size": "integer results per page",
    "results_count": "integer number of jobs returned on this page",
    "total_results": "integer total number of matching jobs"
  },
  "sample": {
    "data": {
      "jobs": [
        {
          "city": "Houston",
          "badge": "",
          "state": "Texas",
          "title": "Senior Sales Business Development Manager (Ocean Freight)",
          "job_id": "AV-338903",
          "req_id": "AV-338903",
          "skills": [
            "upbeat",
            "dgf",
            "sales growth"
          ],
          "country": "United States of America",
          "category": "",
          "location": "Houston, Texas, United States of America",
          "apply_url": "https://dpdhlgroup.avature.net/jobs/ApplicationMethods?jobId=338903&source=careers.dhl.com",
          "work_hours": "Vollzeit",
          "posted_date": "2026-03-27T18:26:10.000+0000",
          "career_level": "Professionals",
          "date_created": "2026-02-24T21:08:56.849+0000",
          "multi_category": [
            "Sales and Business Development"
          ],
          "multi_location": [
            "Houston, Texas, United States of America"
          ],
          "is_multi_location": true,
          "city_state_country": "Houston, Texas, United States of America",
          "description_teaser": "Job Title: Senior Sales Business Development Manager (Ocean Freight)..."
        }
      ],
      "page": 1,
      "page_size": 10,
      "results_count": 10,
      "total_results": 129
    },
    "status": "success"
  }
}

About the careers.dhl.com API

The DHL Careers API exposes 2 endpoints that retrieve job listings from DHL Group's global careers portal at careers.dhl.com. The search_jobs endpoint supports keyword search with pagination and returns up to 13 fields per listing including job_id, title, location, category, career_level, and a direct apply URL. A second endpoint, search_relevant_jobs, runs multiple keyword queries in one call and filters results by title pattern, making it straightforward to target specific roles across DHL's worldwide openings.

Endpoints and Core Response Shape

The search_jobs endpoint accepts a keywords string (e.g., 'Analytics', 'E-Commerce'), a 1-based page number, and a page_size up to 100. It returns an array of job objects alongside total_results so you can calculate how many pages exist. Each job object includes job_id, title, location, city, state, country, city_state_country, category, career_level, a description teaser, skills, and an apply_url. The pagination fields — page, page_size, and results_count — are returned at the top level of every response.

Multi-Query Filtering with search_relevant_jobs

The search_relevant_jobs endpoint accepts search_keywords as a pipe-separated list of query terms (e.g., 'Software Engineer|Data Analyst|Logistics') and title_patterns as a pipe-separated list of substrings to match against job titles (case-insensitive). Results are deduplicated across queries. The response includes the same job object fields as search_jobs, plus a total_matching_jobs integer reflecting how many listings survived the title filter. Use max_results to cap the returned set when running broad multi-keyword sweeps.

Coverage and Scope

Both endpoints draw from DHL Group's live careers portal, which covers positions across DHL's global divisions including Express, Supply Chain, Global Forwarding, and eCommerce. The country and city_state_country fields make it practical to filter results client-side by geography after retrieval, though the search itself is keyword-driven rather than natively location-filtered.

Common use cases
  • Aggregate DHL job openings by career_level to build a seniority-segmented job board feed
  • Monitor new logistics and supply chain roles at DHL using periodic keyword searches on terms like 'Freight' or 'Warehouse'
  • Use search_relevant_jobs with title_patterns to track how many software engineering roles DHL posts globally each month
  • Extract apply_url links from job objects to feed a daily newsletter of DHL openings by category
  • Compare DHL hiring activity across cities using the city_state_country field from paginated search_jobs results
  • Pipe multi-keyword queries through search_relevant_jobs to deduplicate and identify unique open positions across DHL divisions
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 DHL Group provide an official public developer API for its careers portal?+
DHL Group does not publish an official developer API for careers.dhl.com. The DHL Developer Portal (developer.dhl.com) covers logistics services such as shipment tracking and parcel APIs, but there is no documented public API for querying job listings.
What does search_relevant_jobs return that search_jobs does not?+
search_relevant_jobs accepts multiple pipe-separated keyword queries in a single call, deduplicates matching jobs across those queries, and applies a title_patterns filter so only listings whose titles contain the specified substrings are returned. It also exposes a total_matching_jobs count reflecting how many deduplicated jobs passed the filter, and a max_results cap. search_jobs runs a single keyword query and returns all matching listings without title-level filtering.
Can I filter job listings by country or city directly in the API request?+
Neither endpoint currently accepts a country or city parameter — geographic filtering is keyword-driven. Each job object does include city, state, country, and city_state_country fields, so you can filter results client-side after retrieval. You can fork this API on Parse and revise it to add a location filter parameter if you need server-side geographic scoping.
Does the API return the full job description text?+
The API returns a description teaser — a short excerpt — rather than the full job description body. Full description content is not currently exposed. You can fork this API on Parse and revise it to add an endpoint that fetches the complete job detail page for a given job_id.
How fresh are the job listings returned by the API?+
Results reflect the live state of careers.dhl.com at the time of each request. There is no caching layer that holds a snapshot of listings from a prior date, so a job that has been removed from the portal will not appear in results, and newly posted roles should be accessible promptly after posting.
Page content last updated . Spec covers 2 endpoints from careers.dhl.com.
Related APIs in JobsSee all →
nvidia.com API
nvidia.com API
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.
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.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
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.
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.
naukri.com API
naukri.com API