DHL

DHL Find By Geo API

The Find By Geo API from DHL — 1 operation(s) for find by geo.

OpenAPI Specification

dhl-find-by-geo-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: DHL Location Finder Unified Find By Address Find By Geo API
  description: The DHL Location Finder Unified API provides search of DHL Service Points across DHL divisions by address, geographic coordinates, location ID, and keyword ID.
  version: '1'
servers:
- url: https://api.dhl.com/location-finder/v1
  description: DHL Location Finder Unified API
security:
- apiKey: []
tags:
- name: Find By Geo
paths:
  /find-by-geo:
    get:
      summary: Find Service Points by geographic coordinates
      operationId: findByGeo
      parameters:
      - name: latitude
        in: query
        required: true
        schema:
          type: number
          format: double
      - name: longitude
        in: query
        required: true
        schema:
          type: number
          format: double
      - $ref: '#/components/parameters/ProviderType'
      - $ref: '#/components/parameters/ServiceType'
      - $ref: '#/components/parameters/LocationType'
      - $ref: '#/components/parameters/Radius'
      - $ref: '#/components/parameters/Limit'
      - $ref: '#/components/parameters/HideClosedShops'
      - name: countryCode
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Service Point list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServicePointList'
      tags:
      - Find By Geo
components:
  parameters:
    Limit:
      name: limit
      in: query
      schema:
        type: integer
    ProviderType:
      name: providerType
      in: query
      schema:
        type: string
        enum:
        - parcel
        - express
    ServiceType:
      name: serviceType
      in: query
      schema:
        type: string
    Radius:
      name: radius
      in: query
      schema:
        type: integer
        default: 5000
    HideClosedShops:
      name: hideClosedShops
      in: query
      schema:
        type: boolean
    LocationType:
      name: locationType
      in: query
      schema:
        type: string
        enum:
        - servicepoint
        - postoffice
        - locker
        - pobox
        - postbox
  schemas:
    ServicePoint:
      type: object
      additionalProperties: true
      properties:
        url:
          type: string
        location:
          type: object
          additionalProperties: true
        name:
          type: string
        place:
          type: object
          additionalProperties: true
    ServicePointList:
      type: object
      additionalProperties: true
      properties:
        url:
          type: string
        locations:
          type: array
          items:
            $ref: '#/components/schemas/ServicePoint'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: DHL-API-Key
x-generated-from: https://developer.dhl.com/api-reference/location-finder-unified
x-generated-by: claude-crawl-2026-05-08