List all Iroh Endpoints for an Organization
curl --request GET \
--url https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints \
--header 'Authorization: Bearer <token>'import requests
url = "https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints', 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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints",
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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints"
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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints")
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{
"data": [
{
"details": {},
"identifier": "c8924b6c9b7a8528b1365ebec4b2e43b6edebef684f8521f12b8caaf6e1b2302",
"inserted_at": "2026-08-14T11:02:31Z",
"instance": "default",
"last_reported_at": "2026-08-16T09:14:00Z",
"owner": {
"device_identifier": "example_device",
"type": "device",
"user_email": null,
"user_name": null
},
"service": "iroh",
"source": "device_reported",
"updated_at": "2026-08-16T09:14:00Z"
},
{
"details": {},
"identifier": "5f691e39f55415be337b2e4cc0dd7291586ab7c4356bf32bab60f46fc78f95d5",
"inserted_at": "2026-08-15T08:41:12Z",
"instance": "default",
"last_reported_at": null,
"owner": {
"device_identifier": null,
"type": "user",
"user_email": "member@example.com",
"user_name": "Alex Doe"
},
"service": "iroh",
"source": "operator",
"updated_at": "2026-08-15T08:41:12Z"
}
]
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}Iroh Endpoints
List all Iroh Endpoints for an Organization
Newest first.
search matches the start of an endpoint id, and anywhere within a
device identifier or a member’s name. Prefix rather than substring on the
key because that is the half a caller has: logs and tables show a key
truncated, so the beginning is what can be copied out of one.
GET
/
api
/
orgs
/
{org_name}
/
iroh_endpoints
List all Iroh Endpoints for an Organization
curl --request GET \
--url https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints \
--header 'Authorization: Bearer <token>'import requests
url = "https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints', 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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints",
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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints"
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://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://manage.nervescloud.com/api/orgs/{org_name}/iroh_endpoints")
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{
"data": [
{
"details": {},
"identifier": "c8924b6c9b7a8528b1365ebec4b2e43b6edebef684f8521f12b8caaf6e1b2302",
"inserted_at": "2026-08-14T11:02:31Z",
"instance": "default",
"last_reported_at": "2026-08-16T09:14:00Z",
"owner": {
"device_identifier": "example_device",
"type": "device",
"user_email": null,
"user_name": null
},
"service": "iroh",
"source": "device_reported",
"updated_at": "2026-08-16T09:14:00Z"
},
{
"details": {},
"identifier": "5f691e39f55415be337b2e4cc0dd7291586ab7c4356bf32bab60f46fc78f95d5",
"inserted_at": "2026-08-15T08:41:12Z",
"instance": "default",
"last_reported_at": null,
"owner": {
"device_identifier": null,
"type": "user",
"user_email": "member@example.com",
"user_name": "Alex Doe"
},
"service": "iroh",
"source": "operator",
"updated_at": "2026-08-15T08:41:12Z"
}
]
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}{
"errors": {
"detail": "Resource Not Found or Authorization Insufficient"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Organization Name
Query Parameters
Only endpoints held by this kind of owner, matching the owner.type in the response
Available options:
device, user, none Match the start of an endpoint id, or part of a device identifier or member name
Response
Iroh Endpoints
Iroh Endpoint list response
The organization's iroh endpoint ids
Show child attributes
Show child attributes

