Listar API keys
curl --request GET \
--url https://api.notifique.dev/v1/platform/api-keys \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/platform/api-keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/platform/api-keys"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/platform/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))
}{
"success": true,
"data": [
{
"id": "clkey_01HABC...",
"name": "Bot produção",
"prefix": "sk_live_abc1",
"environment": "LIVE",
"scopes": [
"whatsapp:send",
"whatsapp:read"
],
"instanceIds": [
"clinst_01H..."
],
"domainIds": [],
"pushAppIds": [],
"spendLimitMode": "CREDITS",
"spendLimitCredits": 50000,
"spendLimitCents": null,
"usedCredits": 1200,
"usedCents": 0,
"lastUsedAt": "2026-08-14T18:30:00.000Z",
"createdAt": "2026-08-01T10:00:00.000Z",
"revokedAt": null
}
]
}{
"success": false,
"code": "VERIFICATION_TOKEN_INVALID"
}{
"success": false,
"code": "FORBIDDEN"
}API Keys
Listar API keys
Lista chaves do workspace. Nunca retorna plaintext. includeRevoked=true inclui chaves com revokedAt. Escopo api_keys:read.
GET
/
v1
/
platform
/
api-keys
Listar API keys
curl --request GET \
--url https://api.notifique.dev/v1/platform/api-keys \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.notifique.dev/v1/platform/api-keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.notifique.dev/v1/platform/api-keys"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.notifique.dev/v1/platform/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))
}{
"success": true,
"data": [
{
"id": "clkey_01HABC...",
"name": "Bot produção",
"prefix": "sk_live_abc1",
"environment": "LIVE",
"scopes": [
"whatsapp:send",
"whatsapp:read"
],
"instanceIds": [
"clinst_01H..."
],
"domainIds": [],
"pushAppIds": [],
"spendLimitMode": "CREDITS",
"spendLimitCredits": 50000,
"spendLimitCents": null,
"usedCredits": 1200,
"usedCents": 0,
"lastUsedAt": "2026-08-14T18:30:00.000Z",
"createdAt": "2026-08-01T10:00:00.000Z",
"revokedAt": null
}
]
}{
"success": false,
"code": "VERIFICATION_TOKEN_INVALID"
}{
"success": false,
"code": "FORBIDDEN"
}Autorizações
ntfPlatformBearerAuthntfPlatformApiKeyHeader
API key (sk_live_...) ou sessionToken de login.
Parâmetros de consulta
Inclui chaves revogadas (soft revoke).
Esta página foi útil?

