Discover/DPD Group API
live

DPD Group APIdpdgroup.com

Search DPD Pickup parcel shops by postcode or city, retrieve opening hours, shop services, country partners, and European network statistics via 4 endpoints.

Endpoint health
verified 5d ago
get_country_partners
search_parcel_shops
get_parcel_shop_details
get_parcelshop_network_stats
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the DPD Group API?

The DPD Group API provides 4 endpoints covering parcel shop discovery, location details, country partner listings, and network coverage statistics across Europe. The search_parcel_shops endpoint accepts a postcode or city name and returns shop names, addresses, GPS coordinates, distances, and types — letting you build location-aware shipping tools without manual lookups.

Try it

No input parameters required.

api.parse.bot/scraper/550c71c5-fb01-404b-b951-b2182c1fccef/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/550c71c5-fb01-404b-b951-b2182c1fccef/get_country_partners' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace dpdgroup-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.dpd_group_api import DPD, ShopType

dpd = DPD()

# Search for parcel shops near a Berlin postcode, filtering to stations only
for shop in dpd.parcelshops.search(query="10115", filter_type=ShopType.STATION):
    print(shop.name, shop.distance, shop.type)

    # Get detailed opening hours for each station
    detail = shop.details(query="10115")
    for hours in detail.opening_hours:
        print(hours.day, hours.hours)

# List all DPD country partners
for partner in dpd.partners.list():
    print(partner.region, partner.name, partner.url)

# Get network coverage statistics
stats = dpd.networks.get()
print(stats.coverage_countries, stats.europe_total_points, stats.germany_pickup_points)
All endpoints · 4 totalmissing one? ·

Returns the complete list of DPD partner brands and their country-specific website URLs, organized by region (Africa, Americas, Asia, Europe). Each partner entry includes brand name, region, and clickable URL. The list is deduplicated by URL.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "partners": "array of partner objects each with region, name, and url"
  },
  "sample": {
    "data": {
      "partners": [
        {
          "url": "http://www.dpd.com/za/",
          "name": "DPD South Africa",
          "region": "Africa"
        },
        {
          "url": "https://www.dpd.com/ar",
          "name": "DPD Argentina",
          "region": "Americas"
        },
        {
          "url": "https://www.dpd.com/de",
          "name": "DPD Germany",
          "region": "Europe"
        },
        {
          "url": "https://www.dpd.com/cn/en/",
          "name": "DPD China",
          "region": "Asia"
        }
      ]
    },
    "status": "success"
  }
}

About the DPD Group API

Parcel Shop Search and Details

The search_parcel_shops endpoint takes a query parameter (postcode or city, e.g. '10115' for Berlin) and an optional filter_type of 'parcelshop' or 'station'. Each result in the shops array includes a shop id, an index value, name, address, distance, coordinates, and type. The total_found integer tells you how many locations matched. To retrieve full details for a specific result, pass the same query and the two-digit shop_index (e.g. '01') to get_parcel_shop_details, which returns opening_hours as a day-by-day array, a services list, and the DPD location_id.

Partner Network and Coverage

get_country_partners returns a complete array of DPD partner brands organized by region — Africa, Americas, Asia, and Europe — with each entry including the brand name and its country-specific url. No parameters are required. get_parcelshop_network_stats similarly requires no inputs and returns three headline figures: coverage_countries, europe_total_points (combined parcel shops and lockers), and germany_pickup_points. These figures reflect DPD's self-reported network scale.

Data Shape and Coupling

Shop details in get_parcel_shop_details depend on the shop_index produced by a prior search_parcel_shops call — the index is positional within those results, not a globally stable identifier. Store the location_id from the detail response if you need a persistent reference. The filter_type parameter in search is the only filtering dimension available; there is no radius, country-code, or service-type filter at the search stage.

Reliability & maintenanceVerified

The DPD Group API is a managed, monitored endpoint for dpdgroup.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dpdgroup.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official dpdgroup.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Embed a 'find nearest DPD Pickup point' widget in a checkout flow using coordinates from search_parcel_shops
  • Display opening hours for a specific parcel shop alongside a shipment tracking page using get_parcel_shop_details
  • Build a coverage map of DPD's European network using the europe_total_points figure from get_parcelshop_network_stats
  • Populate a country-selector UI with DPD partner brand links from get_country_partners
  • Filter search results to lockers only by passing filter_type='station' for contactless drop-off flows
  • Compare parcel shop density by city by querying multiple postcodes and aggregating total_found counts
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 DPD Group offer an official developer API?+
DPD Group does not publish a general-purpose public developer API. Business integrations are typically handled through carrier-specific EDI or proprietary shipper portals rather than a documented open API.
What does search_parcel_shops actually return, and how does filtering work?+
It returns a shops array where each object includes id, index, name, address, distance, coordinates, and type. The only filter available at search time is filter_type, which accepts 'parcelshop' or 'station'. There is no radius, country-code, or maximum-results parameter.
Is the shop_index in get_parcel_shop_details a stable global identifier?+
No — shop_index is positional within the results of a specific search_parcel_shops call. If you need a persistent reference across sessions, store the location_id field returned by get_parcel_shop_details instead.
Does the API cover real-time parcel tracking or shipment status?+
Not currently. The API covers parcel shop discovery, opening hours, partner brand listings, and network statistics. It does not expose shipment tracking, label generation, or dispatch booking. You can fork this API on Parse and revise it to add a tracking endpoint if that data becomes accessible.
Can I search for parcel shops outside Europe, or in non-European DPD partner countries?+
The search_parcel_shops and get_parcelshop_network_stats endpoints reflect the European DPD Pickup network. get_country_partners does list brands for Africa, Americas, and Asia, but shop-level search is not available for those regions. You can fork the API on Parse and revise it to add search support for additional regions.
Page content last updated . Spec covers 4 endpoints from dpdgroup.com.
Related APIs in Maps GeoSee all →
dhl.com API
Track DHL shipments worldwide by entering a tracking number to retrieve real-time status updates, delivery location details, product information, and a complete history of all shipment events. Monitor packages from origin to destination with comprehensive tracking data.
careers.dhl.com API
Search and filter job listings across DHL Group's global careers portal by keywords, location, and other criteria with easy pagination to browse through results. Find positions matching specific job titles and requirements across multiple searches.
pnp.co.za API
Search for groceries, browse products by category, and discover current specials at Pick n Pay stores, while accessing detailed product information, store locations, and fresh produce availability all in one place.
fedex.com API
Access data from fedex.com.
fahrrad.de API
Search and browse e-bikes and bicycles from fahrrad.de to compare technical specifications, prices, and real-time availability across their store network. Find products by brand, view detailed product information, and locate inventory at specific store locations.
europages.fr API
Search for European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.
rewe.de API
Search REWE online shop products with local delivery pricing by German postal code, browse the delivery catalog, and check whether delivery or pickup is available in a given area.
darty.com API
Search and browse electronics products from Darty.com, view detailed specifications and pricing information, and add items directly to your cart. Discover product details like features, availability, and technical specs to help you find exactly what you need.