このコマンドは、単一のストレージプールからのプロパティーをプールのストレージ利用状況の情報とともに返します。成功したコマンドに対し、HTTP ステータス 200 (OK) が返されます。
リクエストの例:
GET /api/storage/v1/pools/gold HTTP/1.1 Host: zfs-storage.example.com Accept: application/json
レスポンスの例:
HTTP/1.1 200 OK
Content-Type: application/json
{
    "pool": {
        "profile": "raidz1",
        "name": "gold",
        "usage": {
            "available": 2388000726016,
            "total": 2388001816576,
            "dedupratio": 100,
            "used": 1090560
        },
        "peer": "00000000-0000-0000-0000-000000000000",
        "state": "online",
        "owner": "tanana",
        "asn": "2f4aeeb3-b670-ee53-e0a7-d8e0ae410749"
    }
}