> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shinzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Resources

> Get all telemetry resources (services) that have sent data.

## Authentication

Requires JWT token authentication.

```bash theme={null}
Authorization: Bearer <jwt_token>
```

## Example Request

```bash theme={null}
curl -X GET https://api.app.shinzo.ai/telemetry/fetch_resources \
  -H "Authorization: Bearer <jwt_token>"
```

## Response

```json theme={null}
{
  "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"
    }
  ]
}
```

## Status Codes

| Code  | Description              |
| ----- | ------------------------ |
| `200` | Success                  |
| `400` | Invalid query parameters |
| `401` | Invalid or missing token |
