> ## Documentation Index
> Fetch the complete documentation index at: https://docs.plane.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a location

> Retrieve the details of an existing work location.

### Parameters

<ParamField type="string" path="id" initialValue="loc_cNqYX2J3s9bI2Aa" required>
  The ID of a location in your Plane workspace.
</ParamField>

### Returns

Returns a location if a valid identifier was provided, and returns an error otherwise.

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "loc_cNqYX2J3s9bI2Aa",
    "name": "San Francisco Office",
    "address": {
      "line1": "123 Main Street",
      "line2": "Suite 100",
      "city": "San Francisco",
      "state": "CA",
      "postal_code": "94105",
      "country": "US"
    },
    "created": "2024-01-15T00:00:00Z",
    "updated": "2024-02-01T00:00:00Z"
  }
  ```
</ResponseExample>
