curl --request GET \
--url https://api.app.shinzo.ai/telemetry/fetch_resources \
--header 'Authorization: Bearer <token>'Get all telemetry resources (services) that have sent data.
curl --request GET \
--url https://api.app.shinzo.ai/telemetry/fetch_resources \
--header 'Authorization: Bearer <token>'Authorization: Bearer <jwt_token>
curl -X GET https://api.app.shinzo.ai/telemetry/fetch_resources \
-H "Authorization: Bearer <jwt_token>"
{
"resources": [
{
"resource_id": "res_abc123",
"service_name": "my-mcp-server",
"service_version": "1.0.0",
"first_seen_at": "2025-01-10T08:00:00Z",
"last_seen_at": "2025-01-20T14:30:00Z"
}
]
}
| Code | Description |
|---|---|
200 | Success |
400 | Invalid query parameters |
401 | Invalid or missing token |