Build Amazing Location-Based Applications with Indonesia's Leading Platform

Enterprise-grade location APIs with advanced spatial indexing, real-time analytics, and bulletproof security. Trusted by Indonesia's top companies for location-based services.

99.9%
Uptime
85ms
Response Time
2.1M+
Daily Queries

Location Query Engine

Live
Spatial Query: "Find nearby restaurants" Real-time spatial indexing β€’ Sub-100ms response
Query Center
Found POIs
Outside Radius
Polygons

Simple, Transparent Pricing

Start free and scale as you grow. No hidden fees, no vendor lock-in.

πŸ—ΊοΈ Explorer

Free
forever
  • 1,000 requests/month
  • District-level search (3-5km)
  • REST API access
  • JSON format
  • 1 user included
  • Documentation support
  • Perfect for prototyping
Hard limit - no excess queries

🧭 Navigator

$999
per month
or $10,000/year (save $988)
  • 500,000 requests/month
  • Priority processing
  • Private API endpoints
  • AI integration ready
  • Includes 25 users
  • 24/7 phone support
  • Dedicated account manager
  • SSO + SAML authentication
  • Custom integrations
+ $10/month per additional user
Excess: $0.15 per 1,000 queries

🏒 Enterprise

Custom
contact sales
  • Unlimited requests
  • Custom configurations
  • Dedicated instance
  • On-premise deployment
  • White-label options
  • Unlimited users
  • 99.99% SLA
  • SSO + SAML authentication
  • Custom integrations
  • Enterprise support
Custom volume pricing

Powerful Query Capabilities

From simple nearby searches to complex spatial analysis, our APIs handle every location-based query with precision and speed. See the demos and try the code yourself.

Nearby Search
Point in Polygon
Intersection

Nearby Search

Find points of interest within a specified radius. Perfect for "What's near me?" queries in mobile apps and location-based services.

  • Radius from 50m to 50km (Premium+)
  • Sub-100ms response times
  • Distance sorting included
  • Customizable result limits
  • Rich POI metadata
Nearby Search: Find restaurants & areas within 1km 5 POIs + 2 areas found β€’ Sorted by distance β€’ 89ms response
7
Found
89ms
Response
1km
Radius
GET /v1/pois/nearby
curl -X GET "https://api.dekat.space/v1/pois/nearby?lat=-6.1751&lng=106.8270&radius=1000&limit=10&dataset_id=01H5XJQJ7PQRMVZ8B3J5K6N4P9" \ -H "Authorization: Bearer dekat_live_your_api_key_here" \ -H "Content-Type: application/json"
Response (89ms)
{ "status": "success", "data": { "pois": [ { "id": "01H5XJQJ7PQRMVZ8B3J5K6N4P7", "name": "Central Coffee", "poi_type": "restaurant", "organization_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P8", "dataset_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P9", "distance": 245.7, "geojson": { "type": "Point", "coordinates": [106.8285, -6.1734] }, "properties": { "cuisine": { "value": "coffee", "type": "string" }, "rating": { "value": 4.5, "type": "number", "subtype": "float" }, "amenities.wifi": { "value": true, "type": "boolean" }, "tags": { "values": ["coffee", "wifi", "breakfast"], "type": "array", "subtype": "string" } } }, { "id": "01H5XJQJ7PQRMVZ8B3J5K6N4Q1", "name": "Food Court Zone", "poi_type": "polygon", "organization_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P8", "dataset_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P9", "distance": 180.3, "geojson": { "type": "Polygon", "coordinates": [[[106.827, -6.173], [106.829, -6.173], [106.829, -6.175], [106.827, -6.175], [106.827, -6.173]]] }, "properties": { "category": { "value": "food_court", "type": "string" }, "capacity": { "value": 500, "type": "number", "subtype": "integer" }, "tags": { "values": ["food", "dining", "mall"], "type": "array", "subtype": "string" } } } ], "total": 7, "query_time_ms": 89 } }

Point in Polygon

Check if a location falls within defined areas like delivery zones, districts, or administrative boundaries.

  • Fast polygon containment testing
  • Support for complex polygons
  • Multi-polygon support
  • Boundary metadata included
  • Ideal for geo-fencing
Zone A Zone B βœ“ Zone C Point in Polygon: "Which zone contains this location?" Point is inside Zone B (delivery zone) β€’ 45ms response
1
Zone Found
45ms
Response
3
Zones Tested
GET /v1/pois/contains
curl -X GET "https://api.dekat.space/v1/pois/contains?lat=-6.1751&lng=106.8270&dataset_id=01H5XJQJ7PQRMVZ8B3J5K6N4P9" \ -H "Authorization: Bearer dekat_live_your_api_key_here" \ -H "Content-Type: application/json"
Response (45ms)
{ "status": "success", "data": { "containing_pois": [ { "id": "01H5XJQJ7PQRMVZ8B3J5K6N4Q2", "name": "Central Jakarta Delivery Zone", "poi_type": "delivery_zone", "organization_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P8", "dataset_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P9", "geojson": { "type": "Polygon", "coordinates": [[[106.820, -6.170], [106.830, -6.170], [106.830, -6.180], [106.820, -6.180], [106.820, -6.170]]] }, "properties": { "service_area": { "value": "premium", "type": "string" }, "delivery_fee": { "amount": 15000, "currency": "IDR", "type": "currency" }, "estimated_time": { "value": "30-45 minutes", "type": "string" }, "zone_type": { "value": "delivery", "type": "string" }, "tags": { "values": ["delivery", "zone", "premium"], "type": "array", "subtype": "string" } } } ], "total": 1, "query_time_ms": 45 } }

Geometry Intersection

Find all geometries that intersect with a given shape. Perfect for coverage analysis and spatial overlap detection.

  • Complex geometry intersections
  • Line and polygon support
  • Overlap area calculations
  • Multi-geometry processing
  • Coverage analysis ready
Building A Building B βœ“ Building C βœ“ Building D βœ“ Building E Intersection Query: "Find buildings that overlap with this area" 3 buildings intersect with query polygon β€’ 67ms response
3
Intersections
67ms
Response
5
Tested
POST /v1/pois/intersects
curl -X POST "https://api.dekat.space/v1/pois/intersects?dataset_id=01H5XJQJ7PQRMVZ8B3J5K6N4P9" \ -H "Authorization: Bearer dekat_live_your_api_key_here" \ -H "Content-Type: application/json" \ -d '{ "geometry": { "type": "Polygon", "coordinates": [[ [106.825, -6.172], [106.828, -6.172], [106.828, -6.175], [106.825, -6.175], [106.825, -6.172] ]] } }'
Response (67ms)
{ "status": "success", "data": { "intersecting_pois": [ { "id": "01H5XJQJ7PQRMVZ8B3J5K6N4Q3", "name": "Building B", "poi_type": "building", "organization_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P8", "dataset_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P9", "geojson": { "type": "Polygon", "coordinates": [[[106.824, -6.171], [106.826, -6.171], [106.826, -6.174], [106.824, -6.174], [106.824, -6.171]]] }, "overlap_area": 450.2, "overlap_percentage": 75.3, "properties": { "building_type": { "value": "commercial", "type": "string" }, "floors": { "value": 12, "type": "number", "subtype": "integer" }, "year_built": { "value": 2018, "type": "number", "subtype": "integer" }, "tags": { "values": ["building", "commercial"], "type": "array", "subtype": "string" } } }, { "id": "01H5XJQJ7PQRMVZ8B3J5K6N4Q4", "name": "Building C", "poi_type": "building", "organization_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P8", "dataset_id": "01H5XJQJ7PQRMVZ8B3J5K6N4P9", "geojson": { "type": "Polygon", "coordinates": [[[106.827, -6.172], [106.829, -6.172], [106.829, -6.176], [106.827, -6.176], [106.827, -6.172]]] }, "overlap_area": 320.1, "overlap_percentage": 45.8, "properties": { "building_type": { "value": "office", "type": "string" }, "floors": { "value": 8, "type": "number", "subtype": "integer" }, "year_built": { "value": 2020, "type": "number", "subtype": "integer" }, "tags": { "values": ["building", "office"], "type": "array", "subtype": "string" } } } ], "total": 3, "query_time_ms": 67 } }

Everything You Need for Location Excellence

From startup to enterprise, our platform scales with your needs while maintaining sub-100ms response times and 99.9% uptime.

πŸš€

Lightning-Fast Spatial Indexing

Advanced spatial indexing technology powers our multi-level indexing system, delivering sub-100ms response times for complex location queries.

  • Multi-level spatial indexing
  • Optimized for Indonesia's geography
  • Handles billions of POIs efficiently
  • Real-time location analytics
πŸ›‘οΈ

Enterprise-Grade Security

Bank-level security with SRP authentication, multi-factor authentication, and comprehensive audit logging for complete compliance.

  • SRP zero-knowledge authentication
  • RBAC with 52 granular permissions
  • WebAuthn & TOTP support
  • Complete audit trail
πŸ“Š

Real-Time Analytics & Monitoring

Get instant insights into your spatial data with real-time dashboards, usage analytics, and performance monitoring.

  • Live usage tracking
  • Performance metrics
  • Custom analytics dashboards
  • Automated alerting
🌐

Cloud-Native Architecture

Built for the cloud with enterprise database support, auto-scaling, and deployment flexibility across multiple regions.

  • Enterprise database integration
  • Auto-scaling capabilities
  • Multi-region deployment
  • Container-native development
πŸ”Œ

Developer-Friendly APIs

RESTful APIs with comprehensive documentation, SDKs, and examples to get you up and running in minutes.

  • RESTful API design
  • Comprehensive documentation
  • Multiple SDK options
  • Interactive API explorer
🏒

Enterprise Support

Dedicated support team, custom integrations, and on-premise deployment options for enterprise customers.

  • 24/7 dedicated support
  • Custom integration services
  • On-premise deployment
  • SLA guarantees

Ready to Build Something Amazing?

Join hundreds of developers and companies building the future of location-based services in Indonesia

✨ Free trial available on all paid plans β€’ No credit card required β€’ Setup in 5 minutes