Skip to main content
GET
/
api
/
passport
/
business

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

businessId
number
required
Numeric identifier of the business.

Response

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

Examples

Fetch business details

GET /api/passport/business?businessId=5

TypeScript Integration

import endpoints from '@/api/endpoints'

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