List API tokens for your authenticated platform.
curl --request GET \
--url https://public-test.blips.network/tokens \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://public-test.blips.network/tokens"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://public-test.blips.network/tokens', 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://public-test.blips.network/tokens",
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: Basic <encoded-value>"
],
]);
$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://public-test.blips.network/tokens"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-test.blips.network/tokens")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-test.blips.network/tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "Token:tok_2f9d7c0ab431",
"name": "Operator management token",
"permissions": [
"manage"
],
"accessLevel": "management",
"issuerType": "operator_issued",
"status": "ACTIVE",
"revocable": false,
"clientId": "ik_test_2c0d5fd7e1b844f2b72f78b1",
"createdAt": "2026-04-12T08:00:00Z",
"updatedAt": "2026-04-12T08:00:00Z",
"revokedAt": null
},
{
"id": "Token:tok_51ce4ab09d87",
"name": "Demo readback token",
"permissions": [
"view"
],
"accessLevel": "view_only",
"issuerType": "platform_self_service",
"status": "ACTIVE",
"revocable": true,
"clientId": "ik_test_7fa9f566c2f1467ab03d1f65",
"createdAt": "2026-04-12T08:15:00Z",
"updatedAt": "2026-04-12T08:15:00Z",
"revokedAt": null
}
]
}{
"status": 400,
"code": "INVALID_REQUEST",
"message": "GET /tokens does not accept query parameters.",
"details": {
"query": "unsupported"
}
}{
"status": 401,
"code": "UNAUTHORIZED",
"message": "Invalid or missing API credentials.",
"details": {}
}{
"status": 403,
"code": "FORBIDDEN",
"message": "Manage access required.",
"details": {
"requiredAccessLevel": "manage"
}
}{
"status": 500,
"code": "INTERNAL_ERROR",
"message": "Internal service error.",
"details": {}
}Platform Setup / Credentials
List API tokens for your authenticated platform.
Retrieve the API tokens visible on your authenticated platform. The operator-issued root manage token appears as read-only context. Platform-created tokens can carry view, manage, or both permissions. clientSecret is never returned on list surfaces.
GET
/
tokens
List API tokens for your authenticated platform.
curl --request GET \
--url https://public-test.blips.network/tokens \
--header 'Authorization: Basic <encoded-value>'import requests
url = "https://public-test.blips.network/tokens"
headers = {"Authorization": "Basic <encoded-value>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Basic <encoded-value>'}};
fetch('https://public-test.blips.network/tokens', 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://public-test.blips.network/tokens",
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: Basic <encoded-value>"
],
]);
$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://public-test.blips.network/tokens"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Basic <encoded-value>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://public-test.blips.network/tokens")
.header("Authorization", "Basic <encoded-value>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-test.blips.network/tokens")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Basic <encoded-value>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "Token:tok_2f9d7c0ab431",
"name": "Operator management token",
"permissions": [
"manage"
],
"accessLevel": "management",
"issuerType": "operator_issued",
"status": "ACTIVE",
"revocable": false,
"clientId": "ik_test_2c0d5fd7e1b844f2b72f78b1",
"createdAt": "2026-04-12T08:00:00Z",
"updatedAt": "2026-04-12T08:00:00Z",
"revokedAt": null
},
{
"id": "Token:tok_51ce4ab09d87",
"name": "Demo readback token",
"permissions": [
"view"
],
"accessLevel": "view_only",
"issuerType": "platform_self_service",
"status": "ACTIVE",
"revocable": true,
"clientId": "ik_test_7fa9f566c2f1467ab03d1f65",
"createdAt": "2026-04-12T08:15:00Z",
"updatedAt": "2026-04-12T08:15:00Z",
"revokedAt": null
}
]
}{
"status": 400,
"code": "INVALID_REQUEST",
"message": "GET /tokens does not accept query parameters.",
"details": {
"query": "unsupported"
}
}{
"status": 401,
"code": "UNAUTHORIZED",
"message": "Invalid or missing API credentials.",
"details": {}
}{
"status": 403,
"code": "FORBIDDEN",
"message": "Manage access required.",
"details": {
"requiredAccessLevel": "manage"
}
}{
"status": 500,
"code": "INTERNAL_ERROR",
"message": "Internal service error.",
"details": {}
}Authorizations
Integration-key Basic Auth (clientId:clientSecret) as documented in docs/public/AUTHENTICATION.md.
Response
API token list returned. Includes the operator-issued root manage token plus any platform-created tokens with secrets redacted.
API tokens visible on this platform. Includes the operator-issued root manage token plus any platform-created tokens.
Show child attributes
Show child attributes
⌘I