# List volumes

Collection: api
Human docs: https://zei.sh/docs/api

List persistent volumes in the organization.

GET /public/volumes?limit=20&cursor=...
Permission: ORG_MANAGE.
Use limit and the returned nextCursor to walk the collection.
Response: A paginated data array and nextCursor. Limits range from 1 through 100.

Example:

```
curl -X GET https://api.zei.sh/api/v1/public/volumes?limit=20&cursor=... \
  -H "X-API-Key: $ZEISH_API_KEY"
```
