---
title: "Retrieve a single location by ID"
method: GET
path: "/locations/{id}"
tags: ["Locations"]
---

# Retrieve a single location by ID

`GET /locations/{id}`

Returns a single location record identified by `{id}`, scoped to the tenant identified by the required `tenant-id` header.

**When to use:** Use when you already know the location's ID and need its full detail. To list all locations for a tenant use `GET /locations`.

**Preconditions:** The `tenant-id` header is required. The `{id}` path parameter accepts either the location's `certifyLocationId` or its `crosswalkId` — it is looked up by certifyLocationId first, falling back to crosswalkId if no match is found.

## Path parameters

- `id` string, required

## Headers

- `tenant-id` string

## Response `200`

A LocationResponse object containing the location's identifiers and detail fields (contacts, service address attributes, accessibility, office hours, practice limitations sourced from the location's operational value).

- LocationResponse
  - `id` string
  - `crosswalkId` string
  - `entityAddressId` string
  - `tenantId` string
  - `generalInfo` LocationGeneralInfo
    - `locationName` string
    - `mainPhoneNumber` string
    - `afterHoursPhoneNumber` string
    - `fax` string
    - `serviceCategory` string
    - `specialtyCode` string
    - `specialtyDescription` string
    - `contactName` string
    - `contactType` string
    - `bedCounts` integer
    - `tags` string[]
    - `acceptsNewPatients` boolean
    - `type` string
    - `suppressSiteFromDirectory` boolean
    - `locationType` string
    - `department` string
    - `isPrimaryLocation` boolean
    - `hasAdmittingPrivileges` boolean
    - `includeLocationForPrivileges` boolean
    - `tty` string
  - `serviceAddress` LocationAddress2
    - `addressLine1` string
    - `addressLine2` string
    - `city` string
    - `state` string
    - `zip` string
    - `country` string
    - `county` string
    - `phone` string
    - `fax` string
    - `email` string
    - `url` string
    - `use` string
    - `type` string
  - `mailingAddress` LocationAddress2
    - `addressLine1` string
    - `addressLine2` string
    - `city` string
    - `state` string
    - `zip` string
    - `country` string
    - `county` string
    - `phone` string
    - `fax` string
    - `email` string
    - `url` string
    - `use` string
    - `type` string
  - `contacts` LocationContact2[]
    - `type` string
    - `name` string
    - `mainPhoneNumber` string
    - `afterHoursPhoneNumber` string
    - `email` string
    - `fax` string
    - `tty` string
  - `hoursOfOperation` object[]
  - `languages` object[]
  - `specialities` object[]
  - `certifications` object[]
  - `networkAffiliations` object[]
  - `facilityTypes` object[]
  - `paymentOptions` object[]
  - `accessibilityOptions` object[]
  - `practiceLimitations` object[]
  - `otherAttributes` object[]
  - `identifiers` object[]
  - `notes` object[]
  - `hospitalAdmittingPrivileges` HospitalAdmittingPrivilege[]
    - `privilege` string
    - `status` string
    - `effectiveDate` string
    - `terminationDate` string
  - `billingEffectiveDate` string, date-time
  - `billingTerminationDate` string, date-time
  - `effectiveDate` string, date-time
  - `terminationDate` string, date-time

## Other responses

- `404` — Location not found with the given ID for tenant. Verify that `{id}` is correct and that the `tenant-id` header matches the tenant that owns the location.

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/563848e0ecc0/schema)
