Skip to main content
GET
/
v1
/
platform
/
clubs
/
{slug}
Get club details by slug
curl --request GET \
  --url https://api.1club.ai/v1/platform/clubs/{slug} \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "slug": "<string>",
  "address": "<string>",
  "city": "<string>",
  "state": "<string>",
  "country": "<string>",
  "postalCode": "<string>",
  "phone": "<string>",
  "email": "<string>",
  "website": "<string>",
  "logo": "<string>",
  "images": [
    "<string>"
  ],
  "amenities": [
    "<string>"
  ],
  "amenitiesResolved": [
    {
      "id": "<string>",
      "name": "<string>",
      "icon": "<string>",
      "category": "<string>"
    }
  ],
  "sports": [
    "<string>"
  ],
  "rating": {
    "average": 123,
    "total": 123
  },
  "socialProfiles": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.1club.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Customer API key obtained from the admin portal (e.g. 1club_sk_live_...)

Path Parameters

slug
string
required

Club slug

Query Parameters

locale
string

Locale for amenity translations

Response

Club details

A club with its address, contact info, amenities, sports, aggregated images, and average rating.

id
integer
name
string
slug
string | null
address
string | null
city
string | null
state
string | null
country
string | null
postalCode
string | null
phone
string | null
email
string | null
website
string | null
logo
string | null
images
string[]

All images aggregated from the club and its active areas.

amenities
string[]

Raw amenity IDs stored on the club.

amenitiesResolved
object[]

Amenities resolved to display objects (id, name, locale-aware).

sports
string[]
rating
object

Average and total of public reviews. Omitted when there are no public reviews.

socialProfiles
object

Map of social network keys (e.g. 'instagram') to profile URLs.