Skip to main content
GET
https://api.plane.com/v1
/
locations
/
{id}
Get a location
curl --request GET \
  --url https://api.plane.com/v1/locations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "loc_cNqYX2J3s9bI2Aa",
  "address": {
    "line1": "123 Main Street",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  },
  "created": "2024-01-15T00:00:00Z"
}

Parameters

id
string
required
The ID of a location in your Plane workspace.

Returns

Returns a location if a valid identifier was provided, and returns an error otherwise.
{
  "id": "loc_cNqYX2J3s9bI2Aa",
  "address": {
    "line1": "123 Main Street",
    "line2": "Suite 100",
    "city": "San Francisco",
    "state": "CA",
    "postal_code": "94105",
    "country": "US"
  },
  "created": "2024-01-15T00:00:00Z"
}