List gyms
GET
/v1/gymsResponses
200Successful response
Array of
GymidstringnamestringRequest
curl -X GET "https://api.sendhelios.com/v1/gyms"const response = await fetch("https://api.sendhelios.com/v1/gyms", {
method: "GET"
});import requests
response = requests.get(
"https://api.sendhelios.com/v1/gyms",
)Response
[
{
"id": "string",
"name": "string"
}
]