List places
curl --request GET \
--url https://api.zenamu.com/v1/places \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.zenamu.com/v1/places"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.zenamu.com/v1/places', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zenamu.com/v1/places",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zenamu.com/v1/places"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zenamu.com/v1/places")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zenamu.com/v1/places")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "Success",
"data": [
{
"_id": "b8419fd7250ce6a3418df90b27ec5a41",
"name": "Main studio",
"photo": "https://storage.zenamu.com/places/main-studio.jpg",
"description": "Our main hall with natural lighting.",
"address": {
"street": "Wellness Avenue 123",
"city": "Prague",
"postalCode": "11000",
"country": "Czechia"
}
}
]
}{
"statusCode": 401,
"error": "Error",
"message": "Missing access token. You must send your access token in the request header ('Authorization: Bearer YOUR_ACCESS_TOKEN' )"
}{
"statusCode": 403,
"error": "Error",
"message": "The Zenamu public API is not available on the Free tariff."
}{
"statusCode": 404,
"error": "Error",
"message": "API key not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded: up to 100 requests per minute per endpoint."
}{
"statusCode": 500,
"error": "Internal Server Error",
"message": "We apologize, but there was an error on our end. If problems persist, please contact us at [email protected]"
}Returns the physical locations where your studio holds classes, so you
can resolve the locationId returned by the classes endpoint into a
name and address.
Archived places are not returned. Workshops do not use places — they carry their own address. See the Place object for details.
GET
/
v1
/
places
List places
curl --request GET \
--url https://api.zenamu.com/v1/places \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.zenamu.com/v1/places"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.zenamu.com/v1/places', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zenamu.com/v1/places",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zenamu.com/v1/places"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zenamu.com/v1/places")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zenamu.com/v1/places")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"statusCode": 200,
"message": "Success",
"data": [
{
"_id": "b8419fd7250ce6a3418df90b27ec5a41",
"name": "Main studio",
"photo": "https://storage.zenamu.com/places/main-studio.jpg",
"description": "Our main hall with natural lighting.",
"address": {
"street": "Wellness Avenue 123",
"city": "Prague",
"postalCode": "11000",
"country": "Czechia"
}
}
]
}{
"statusCode": 401,
"error": "Error",
"message": "Missing access token. You must send your access token in the request header ('Authorization: Bearer YOUR_ACCESS_TOKEN' )"
}{
"statusCode": 403,
"error": "Error",
"message": "The Zenamu public API is not available on the Free tariff."
}{
"statusCode": 404,
"error": "Error",
"message": "API key not found"
}{
"statusCode": 429,
"error": "Too Many Requests",
"message": "Rate limit exceeded: up to 100 requests per minute per endpoint."
}{
"statusCode": 500,
"error": "Internal Server Error",
"message": "We apologize, but there was an error on our end. If problems persist, please contact us at [email protected]"
}Authorizations
Your public API key (zen_pub_…), sent as Authorization: Bearer <key>. Browser-safe. See Authentication.

