> ## Documentation Index
> Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Passport Locations

> Returns coworking locations near a geographic point, for the passport/network map.

# Search Passport Locations

Returns coworking locations within a specified distance of a geographic point. Powers the passport/network map feature that lets members discover and access partner spaces.

## Authentication

No authentication required.

## Query Parameters

<ParamField query="latitude" type="number" required>
  Latitude of the search centre point.
</ParamField>

<ParamField query="longitude" type="number" required>
  Longitude of the search centre point.
</ParamField>

<ParamField query="distance" type="number" required>
  Search radius (in kilometres).
</ParamField>

<ParamField query="rootBusinessId" type="number">
  Optional root business ID to scope results to a specific network.
</ParamField>

## Response

Returns an array of location objects with address, coordinates, and business details.

## Examples

### Search near a location

```http theme={null}
GET /api/passport/map?latitude=51.5074&longitude=-0.1278&distance=50
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

const response = await httpClient.get(endpoints.passport.getByCenter(51.5074, -0.1278, 50))
```
