List API keys
curl --request GET \
--url https://api.hyzecloud.com/api/api-keys/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/api-keys/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/api-keys/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/api-keys/"
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))
}API Keys
List API keys
Lista todas as chaves de API do workspace. O secret completo nunca é retornado — apenas nome, prefixo e metadados.
GET
/
api
/
api-keys
/
List API keys
curl --request GET \
--url https://api.hyzecloud.com/api/api-keys/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.hyzecloud.com/api/api-keys/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.hyzecloud.com/api/api-keys/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.hyzecloud.com/api/api-keys/"
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))
}Autorizações
bearerAuthcookieAuth
API key com prefixo hyze_. Crie no dashboard em Settings → Developer.
Resposta
default
Response
Última modificação em 1 de setembro de 2026

