Get location
GET/locations/:id
Get location
Request
Path Parameters
idstringrequired
Example:
1596a039-466e-4501-b51f-60f1c854c0c1200
Returns the location
objectstringrequired
idstringrequired
namestringrequired
addressstringrequired
citystringrequired
statestringrequired
stateCodestringrequired
countrystringrequired
zipcodestringrequired
latnullablerequired
lngnullablerequired
googlePlaceIdnullablerequired
createdAtstringrequired
updatedAtstringrequired
Example: returns_the_location
{
"object": "location",
"id": "d1d5cc65-38f3-4588-a763-d565835b6208",
"name": "Main Studio",
"address": "123 Main St",
"city": "New York",
"state": "New York",
"stateCode": "NY",
"country": "US",
"zipcode": "12401",
"lat": null,
"lng": null,
"googlePlaceId": null,
"createdAt": "2026-03-24T16:09:55Z",
"updatedAt": "2026-03-24T16:09:55Z"
}401
Returns 401
objectstringrequired
statusintegerrequired
messagestringrequired
Example: returns_401
{
"object": "error",
"status": 401,
"message": "Authentication required"
}404
Returns 404 for non-existent location
objectstringrequired
statusintegerrequired
messagestringrequired
Example: returns_404_for_non-existent_location
{
"object": "error",
"status": 404,
"message": "Resource not found"
}