---
title: Find Nearby places In US API
slug: nearby-places
url: https://apyhub.com/dosvak/service/nearby-places
provider: Dosvak LLC
categories: [Geolocation, Travel]
tags: [geolocation, nearby-search, places, local-search, maps]
auth: api_key
---

# Find Nearby places In US API

Find places near any latitude and longitude, with optional radius and result limits. Built for local search, maps, and location-aware apps.

## Endpoints

| Method | URL | Description | Atoms |
| --- | --- | --- | --- |
| GET | `https://api.eu.apyhub.com/dosvak/nearby-places` | What it does Returns nearby places for a given latitude and longitude. You can optionally limit the… | 10 |

## Examples

### Find Nearby places

#### Quickstart

Find nearby places using a latitude and longitude.

```bash
curl -X GET "https://api.eu.apyhub.com/dosvak/nearby-places?lat=34.0522&lon=-118.2437" \
  -H "apy-token: $APY_TOKEN"
```

#### What you'll get back

Returns a JSON object with additional properties enabled, so the response is an object whose exact fields may vary.

```json
{
  "input": {
    "lat": 40.758,
    "lon": -73.9855,
    "radius_m": 5000,
    "limit": 10
  },
  "count": 10,
  "results": [
    {
      "osm_id": 5706568332,
      "name": "Theater District",
      "category": "unknown",
      "distance_m": 5.82
    }
  ],
  "attribution": [ 
]
}
```

## About

## What it does
Nearby Places returns locations near a latitude and longitude. Send `lat` and `lon`, and you can also narrow the search with `limit` and `radius_m`.

Use Nearby Places when you need place suggestions around a user, a delivery stop, a venue, or any map coordinate. The request is simple: provide a point on the map, then tune how many results you want back and how far out to search. The response schema is open-ended, so expect a structured list of nearby results without assuming a fixed set of fields.

This is a good fit for location-based search, local discovery features, store finders, route planning, and map interfaces that need context around a point rather than a single address. It is also useful when you already have coordinates from geocoding or GPS and need the surrounding places to drive the next step in your workflow.

## Usage

Base URL: `https://api.eu.apyhub.com` (default region — see
`GET https://apyhub.com/api/public/regions` for the rest).

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/dosvak/service/nearby-places
