---
title: "List NFS shares per region"
method: GET
path: "/v2/nfs"
tags: ["DigitalOcean-public.v2-new_NFS"]
---

# List NFS shares per region

`GET /v2/nfs`

To list NFS shares, send a GET request to `/v2/nfs?region=${region}`.

A successful request will return all NFS shares belonging to the authenticated user.

## Query parameters

- `region` string, required

## Response `200`

The response will be a JSON object with a key called `shares`.  The value will be an array of objects, each containing the standard  attributes associated with  an NFS share.

- NfsListResponse
  - `shares` NfsResponse[]
    - `id` string, required — The unique identifier of the NFS share.
    - `name` string, required — The human-readable name of the share.
    - `size_gib` integer, required — The desired/provisioned size of the share in GiB (Gibibytes). Must be >= 50.
    - `region` string, required — The DigitalOcean region slug (e.g., nyc2, atl1) where the NFS share resides.
    - `status` 'CREATING' | 'ACTIVE' | 'FAILED' | 'DELETED', required — The current status of the share.
    - `created_at` string, date-time, required — Timestamp for when the NFS share was created.
    - `vpc_ids` string[] — List of VPC IDs that should be able to access the share.

## Other responses

- `401` — Authentication failed due to invalid credentials.
- `404` — The resource was not found.
- `429` — The API rate limit has been exceeded.
- `500` — There was a server error.
- `default` — There was an unexpected error.

---

[API](https://skmtc.net/digitalocean/apis/digitalocean-api.md) · [All operations](https://skmtc.net/digitalocean/apis/digitalocean-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/digitalocean/digitalocean-api/revisions/cb3bf9b21459/schema)
