---
title: "Get pool"
method: GET
path: "/preview/v2/pools/{id}"
tags: ["Pools"]
---

# Get pool

`GET /preview/v2/pools/{id}`

> ⚠️ This endpoint is in [public preview](/preview/roadmap).

Retrieve a pool by ID, resource path, or name, including its compute schedule.

## Path parameters

- `id` string, required — A resource path like 'sfc:pool:acme:prod:my-pool' _or_ an ID. Resource paths are human-readable but not stable - they change when resources are renamed or moved. IDs are stable and permanent.

## Query parameters

- `schedule_history_minutes` integer

## Response `200`

Pool details.

- PoolResponse — A pool — a container of owned compute allocation over time.
  - `id` string, required
  - `resource_path` string, required — A resource path for a pool resource. Format: sfc:pool:<account>:<workspace>:<name>.
  - `owner` string, required
  - `workspace` string, required
  - `workspace_id` string, required
  - `name` string, required
  - `kind` 'market' | 'originating' | 'read_only', required — Pool kind determines what operations are allowed on a pool. - `Market`: User-created pools. - `Originating`: Provider pools for selling compute. Cannot add compute (buy orders/procurements). - `ReadOnly`: System-managed pools used for legacy compute, bare metal contracts, and other. Cannot be modified through the API.
  - `object` 'pool', required — Discriminator for `/pools` responses.
  - `allocation_schedule` AllocationSchedule, required
    - `total` ScheduleEntry[], required — Node count over time, as a list of `[start_at, end_at)` time ranges. Example: 5 nodes from t=0 to t=3600 is `[{"start_at": 0, "end_at": 3600, "node_count": 5}]`. `start_at` and `end_at` must be 60-second aligned, `node_count` must be non-negative. On non-final entries, `end_at` may be omitted (inferred from the next entry's `start_at`); gaps fill with `node_count: 0`.
      - `start_at` integer, required — Unix timestamp.
      - `end_at` integer — Unix timestamp.
      - `node_count` integer, required
    - `by_instance_sku` object, required — Allocation schedule keyed by instance SKU. Only includes current and future schedule.
  - `procurements` ProcurementSummary[] — Active procurements targeting this pool.
    - `id` string, required
    - `name` string, required
  - `deployments` DeploymentSummary[] — Active deployments targeting this pool.
    - `id` string, required
    - `name` string, required
  - `created_at` integer, required — Unix timestamp.
  - `tags` Tags

## Other responses

- `401` — Unauthorized.
- `403` — Forbidden.
- `404` — Pool not found.
- `500` — Internal server error.

---

[API](https://skmtc.dev/sfcompute/apis/sfc-api.md) · [All operations](https://skmtc.dev/sfcompute/apis/sfc-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/sfcompute/sfc-api/revisions/f3ff1539c0d9/schema)
