공개 및 읽기 전용
Pilgrimap 읽기 API
게시된 순례지를 JSON, GeoJSON 또는 CSV로 읽고 API 키 없이 설정 가능하고 접근성 높은 iframe을 만들 수 있습니다.
공개 및 읽기 전용 API 키가 필요하지 않습니다 CORS enabled
개요 엔드포인트 필터 iframe 빌더 예시
🇬🇧 English 🇩🇪 Deutsch 🇫🇷 Français 🇮🇹 Italiano 🇪🇸 Español 🇵🇹 Português 🇵🇱 Polski 🇷🇺 Русский 🇺🇦 Українська 🇳🇱 Nederlands 🇨🇿 Čeština 🇸🇰 Slovenčina 🇭🇺 Magyar 🇷🇴 Română 🇨🇳 简体中文 🇯🇵 日本語 🇰🇷 한국어 🌐 العربية 🇮🇳 हिन्दी 🇹🇷 Türkçe 🇮🇩 Bahasa Indonesia 🇻🇳 Tiếng Việt 🇬🇷 Ελληνικά 🇭🇷 Hrvatski 🇸🇮 Slovenščina 🇸🇪 Svenska 🇰🇪 Kiswahili 🇵🇭 Filipino
개요 lang=에 활성화된 Pilgrimap 언어를 사용할 수 있습니다. 번역이 없으면 영어로 대체됩니다.
Pilgrimap 출처 표시를 유지해 주세요.
Response headers:
X-Pilgrimap-Attribution: Pilgrimap by Eble ITLink: <https://pilgrimap.org/ko/api-dokumentation>; rel="describedby"GET https://pilgrimap.org/api/v1/meta?lang=ko
JSON · GeoJSON · CSV · iFrame 텍스트, 분류, 국가, 지역, 도시, 지도 범위, 반경, 연락처 및 날짜 필터를 조합할 수 있습니다. 여러 값은 쉼표로 구분합니다.
/api/v1/export?format=geojson&country=DE&category=marienheiligtum
엔드포인트
GET Places /api/v1/placesq, category, country, region, locality, bbox, lat, lng, radius_km, fields, page, per_page
<built-in method copy of dict object at 0x754243df5ac0>GET Places /api/v1/places/<slug>Complete localized place record
<built-in method copy of dict object at 0x754243df5ac0>GET Batch lookup /api/v1/places/batch?slugs=…Up to 100 stable slugs in the requested order
<built-in method copy of dict object at 0x754243df5ac0>GET Search results /api/v1/search?q=…Place names, alternative names and localities; categories are not returned as suggestions
<built-in method copy of dict object at 0x754243df5ac0>GET Categories /api/v1/categoriesLocalized labels, icons, marker colours and place links
<built-in method copy of dict object at 0x754243df5ac0>GET Countries /api/v1/countriesCountry codes and published place totals
<built-in method copy of dict object at 0x754243df5ac0>GET Regions /api/v1/regions?country=DERegional facets and direct filter links
<built-in method copy of dict object at 0x754243df5ac0>GET Facets /api/v1/facetsCategory and country counts for interfaces
<built-in method copy of dict object at 0x754243df5ac0>GET Nearby /api/v1/nearby?lat=…&lng=…Radius search with exact distance_km
<built-in method copy of dict object at 0x754243df5ac0>GET Images /api/v1/places/<slug>/imagesImage URLs, thumbnails, dimensions and MIME types
<built-in method copy of dict object at 0x754243df5ac0>GET Related places /api/v1/places/<slug>/relatedCategory, region and distance based suggestions
<built-in method copy of dict object at 0x754243df5ac0>GET GeoJSON /api/v1/geojsonAll filters supported; FeatureCollection
<built-in method copy of dict object at 0x754243df5ac0>GET Export /api/v1/export?format=json|geojson|csvFiltered export with up to 10,000 records
<built-in method copy of dict object at 0x754243df5ac0>GET Map provider /api/v1/map-providersSupported OSM-based map styles and attribution
<built-in method copy of dict object at 0x754243df5ac0>GET OpenAPI /api/v1/openapi.jsonOpenAPI 3.1 machine-readable contract
<built-in method copy of dict object at 0x754243df5ac0>
필터 텍스트, 분류, 국가, 지역, 도시, 지도 범위, 반경, 연락처 및 날짜 필터를 조합할 수 있습니다. 여러 값은 쉼표로 구분합니다.
iframe 빌더 콘텐츠, 지도 제공자, 테마, 색상, 모서리, 헤더 및 출처 표시를 설정할 수 있습니다.
Preview Embed code <built-in method copy of dict object at 0x754243df5ac0>
JavaScript const response = await fetch('https://pilgrimap.org/api/v1/places?country=DE&category=marienheiligtum&fields=id,slug,name,latitude,longitude&lang=ko');
const { data, pagination } = await response.json();
Python import requests
response = requests.get(
'https://pilgrimap.org/api/v1/export',
params={'format': 'geojson', 'bbox': '8.0,47.0,14.0,51.0', 'lang': 'ko'},
timeout=10,
)
response.raise_for_status()
The public read-only API provides published place and category data as JSON and GeoJSON. It is intended for church information services, research and responsible integrations.