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

# List CloudFS filesystems

> Lists the CloudFS filesystems for the authenticated user's organization. Results use cursor-based pagination: fetch the next page by passing `meta.cursors.after` as `page[after]`, or follow the `meta.next` URL.



## OpenAPI

````yaml https://telnyx-openapi-ng.s3.us-east-1.amazonaws.com/edge-compute.yml get /storage/cloudfs
openapi: 3.1.0
info:
  title: Telnyx Edge Compute API
  version: 2.0.0
  description: API for Edge Compute key-value storage (namespaces and keys).
  contact:
    email: support@telnyx.com
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
paths:
  /storage/cloudfs:
    get:
      tags:
        - cloudfs filesystems
      summary: List CloudFS filesystems
      description: >-
        Lists the CloudFS filesystems for the authenticated user's organization.
        Results use cursor-based pagination: fetch the next page by passing
        `meta.cursors.after` as `page[after]`, or follow the `meta.next` URL.
      operationId: ListCloudfsFilesystems
      parameters:
        - description: >-
            The number of filesystems to return per page. Values above 250 are
            treated as 250.
          name: page[limit]
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 250
            default: 20
        - description: >-
            Opaque cursor from a previous response's `meta.cursors.after`;
            returns the page after it. Mutually exclusive with `page[before]`.
          name: page[after]
          in: query
          schema:
            type: string
        - description: >-
            Opaque cursor from a previous response's `meta.cursors.before`;
            returns the page before it. Mutually exclusive with `page[after]`.
          name: page[before]
          in: query
          schema:
            type: string
        - description: Return only the filesystem whose name matches exactly.
          name: filter[name]
          in: query
          schema:
            type: string
        - description: >-
            Return only filesystems with this status. Unrecognized values are
            ignored.
          name: filter[status]
          in: query
          schema:
            type: string
            enum:
              - provisioning
              - ready
              - needs_format
              - deleting
              - failed
        - description: Return only filesystems in this region.
          name: filter[region]
          in: query
          schema:
            type: string
            example: us-east-1
        - description: >-
            Sort order for the results: a field name for ascending, or the field
            name prefixed with `-` for descending.
          name: sort
          in: query
          schema:
            type: string
            enum:
              - created_at
              - '-created_at'
              - updated_at
              - '-updated_at'
              - name
              - '-name'
            default: '-created_at'
      responses:
        '200':
          description: CloudFS filesystems retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CloudfsFilesystemListResponseWrapper'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/edge-compute_Errors'
        '422':
          description: >-
            Unprocessable entity — invalid `page[limit]`, malformed or
            conflicting cursor, or unsupported `sort` value
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/edge-compute_Errors'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericErrorResponse'
      security:
        - bearerAuth: []
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Telnyx from 'telnyx';

            const client = new Telnyx({
              apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
            });

            // Automatically fetches more pages as needed.
            for await (const response of client.storage.cloudfs.list()) {
              console.log(response);
            }
        - lang: Python
          source: |-
            import os
            from telnyx import Telnyx

            client = Telnyx(
                api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
            )
            page = client.storage.cloudfs.list()
            print(page.data)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/team-telnyx/telnyx-go\"\n\t\"github.com/team-telnyx/telnyx-go/option\"\n)\n\nfunc main() {\n\tclient := telnyx.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tcloudfs, err := client.Storage.Cloudfs.List(context.TODO())\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", cloudfs.Data)\n}\n"
        - lang: Java
          source: |-
            package com.telnyx.sdk.example;

            import com.telnyx.sdk.client.TelnyxClient;
            import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;

            public final class Main {
                private Main() {}

                public static void main(String[] args) {
                    TelnyxClient client = TelnyxOkHttpClient.fromEnv();

                    CloudfsFilesystemListResponseWrapper page = client.storage()cloudfs()list();
                }
            }
        - lang: Ruby
          source: |-
            require "telnyx"

            telnyx = Telnyx::Client.new(api_key: "My API Key")

            page = telnyx.storage.cloudfs.list

            puts(page)
        - lang: PHP
          source: >-
            <?php


            require_once dirname(__DIR__) . '/vendor/autoload.php';


            use Telnyx\Client;

            use Telnyx\Core\Exceptions\APIException;


            $client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API
            Key');


            try {
              $page = $client->storage->cloudfs->list();

              var_dump($page);
            } catch (APIException $e) {
              echo $e->getMessage();
            }
        - lang: CLI
          source: |-
            telnyx storage:cloudfs list \
              --api-key 'My API Key'
components:
  schemas:
    CloudfsFilesystemListResponseWrapper:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/CloudfsFilesystemListItem'
        meta:
          $ref: '#/components/schemas/CloudfsListMeta'
    edge-compute_Errors:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/edge-compute_Error'
    GenericErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/edge-compute_Error'
    CloudfsFilesystemListItem:
      type: object
      description: >-
        A CloudFS filesystem as returned in list results. Connection details
        (`meta_url`, `meta_token`) are omitted — retrieve the filesystem by ID
        for its redacted `meta_url`.
      properties:
        record_type:
          type: string
          example: cloudfs
        id:
          type: string
          format: uuid
          example: 550e8400-e29b-41d4-a716-446655440000
        name:
          type: string
          example: agent-fs
        status:
          $ref: '#/components/schemas/CloudfsFilesystemStatus'
        s3_endpoint:
          type: string
          description: URL of the Telnyx Cloud Storage endpoint backing this filesystem.
          example: https://us-east-1.telnyxcloudstorage.com
        s3_bucket:
          type: string
          description: >-
            Name of the bucket that stores this filesystem's data. Created
            during provisioning.
          example: cloudfs-fs-0123456789abcdef
        region:
          type: string
          example: us-east-1
        created_at:
          type: string
          format: date-time
          example: '2026-07-14T21:42:01Z'
        updated_at:
          type: string
          format: date-time
          example: '2026-07-14T21:42:01Z'
    CloudfsListMeta:
      type: object
      properties:
        cursors:
          $ref: '#/components/schemas/CloudfsListCursors'
        next:
          type: string
          description: >-
            Relative URL (path and query) of the next page. Omitted when there
            are no further results.
        previous:
          type: string
          description: >-
            Relative URL (path and query) of the previous page. Omitted on the
            first page.
    edge-compute_Error:
      type: object
      properties:
        code:
          type: string
          example: '10005'
        detail:
          type: string
          example: The requested function does not exist or you don't have access to it
        meta:
          $ref: '#/components/schemas/ErrorMeta'
        source:
          $ref: '#/components/schemas/ErrorSource'
        title:
          type: string
          example: Function not found
    CloudfsFilesystemStatus:
      type: string
      description: >-
        Lifecycle status of the filesystem. `ready` means it is fully
        provisioned and usable. `needs_format` means the storage bucket and
        metadata database were provisioned but the filesystem has not yet been
        formatted — run `juicefs format` with the filesystem's `meta_url` before
        mounting. `failed` means the last lifecycle action failed — see the
        filesystem's `error` message. `deleted` appears only in the delete
        response: deleted filesystems are excluded from list results and return
        a `404` on retrieval.
      enum:
        - provisioning
        - ready
        - needs_format
        - deleting
        - failed
        - deleted
      example: ready
    CloudfsListCursors:
      type: object
      description: >-
        Opaque cursors for the adjacent pages. Empty when there are no adjacent
        pages.
      properties:
        after:
          type: string
          description: >-
            Cursor for the next page; pass it as `page[after]`. Omitted on the
            last page.
        before:
          type: string
          description: >-
            Cursor for the previous page; pass it as `page[before]`. Omitted on
            the first page.
    ErrorMeta:
      type: object
      properties:
        url:
          type: string
          example: https://docs.telnyx.com/api/errors/10005
    ErrorSource:
      type: object
      properties:
        parameter:
          type: string
          example: id
        pointer:
          type: string
          example: /id
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````