> ## 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.

# Get Passport Business Details

> Returns details for a specific business in the passport network.

# Get Passport Business Details

Returns the full details for a specific coworking business in the passport network. Used when a member selects a location on the passport map.

## Authentication

No authentication required.

## Query Parameters

<ParamField query="businessId" type="number" required>
  Numeric identifier of the business.
</ParamField>

## Response

Returns a business detail object with location, amenities, and access information.

## Examples

### Fetch business details

```http theme={null}
GET /api/passport/business?businessId=5
```

## TypeScript Integration

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

const response = await httpClient.get(endpoints.passport.details(5))
```
