---
title: "Get location details"
method: GET
path: "/locations/{key}"
tags: ["Locations"]
---

# Get location details

`GET /locations/{key}`

Fetch full location details including coordinates, timezone, and photo. Accepts location ID or provider identifier (e.g., Google Place ID). Uses cache-first strategy.

## Path parameters

- `key` string, required — Location key - either a location ID (loc_xxx format) or provider-specific identifier (e.g., Google Place ID)

## Response `200`

OK

- object
  - `location` DetailedLocation, required
    - `id` string, required — Location identifier
    - `googlePlaceId` string — Google Place ID for this location
    - `createdAt` string, date-time, required — Timestamp in ISO 8601 format when the location was created
    - `updatedAt` string, date-time, required — Timestamp in ISO 8601 format when the location was last updated
    - `name` string, required — Location name
    - `address` string, required — Formatted address
    - `city` string — City name
    - `state` string — State or region
    - `postcode` string — Postal code
    - `country` string, required — Country name
    - `latitude` number, required — Latitude coordinate
    - `longitude` number, required — Longitude coordinate
    - `timeZone` string, required — IANA timezone identifier (e.g., 'America/New_York', 'Europe/London', 'Australia/Sydney', 'UTC'). Must be validated against the IANA timezone database where used.
    - `types` string[] — Google Place types indicating the category and nature of this location
    - `description` string — AI-generated description of the place, when available
    - `image` object — Primary location photo
      - `src` string, uri, required
      - `alt` string, required
      - `width` number, required
      - `height` number, required
    - `venue` object — Denormalized venue details if this location is a managed venue. Only included when venue is approved.
      - `id` string, required — Venue identifier
      - `name` string, required — Venue name
      - `slug` string, required — URL-friendly venue slug
      - `teamId` string, required — Team that owns this venue
      - `approval` 'PENDING' | 'APPROVED' | 'REJECTED', required — Venue approval status
      - `image` object — Venue image
        - `src` string, uri, required
        - `alt` string, required
        - `width` number, required
        - `height` number, required
      - `description` string — Venue description

## Other responses

- `400` — 400
- `401` — 401
- `403` — 403
- `404` — 404
- `409` — 409
- `412` — 412
- `422` — 422
- `429` — 429
- `500` — 500
- `501` — 501
- `503` — 503

---

[API](https://skmtc.net/session/apis/session-services-api.md) · [All operations](https://skmtc.net/session/apis/session-services-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/session/session-services-api/versions/a1bb6f6c8a2e/schema)
