Everabyte API
    Everabyte API
    • Back to home
    • File
    • List
      GET
    • Detail
      GET
    • Upload
      PUT
    • Update
      PUT
    • Download
      GET
    • Delete
      DELETE
    • Public Download
      GET
    • Share file with user
      PUT

      List

      Prod
      https://api.everabyte.io/api
      Prod
      https://api.everabyte.io/api
      GET
      https://api.everabyte.io/api
      /files/findAll/c0awv0oseisvm83lru953k12
      This endpoint retrieves all files within a specific bucket.
      Endpoint: /files/findAll/{bucketId}
      Method: GET
      Path Parameters:
      bucketId (required): The ID of the bucket containing the files. Example: my-example-bucket-id
      Request Body Parameters:
      (This endpoint uses a GET method and typically does not have a request body.)
      Example Request:
      GET /files/findAll/my-example-bucket-id
      This request retrieves all files within the bucket with the ID my-example-bucket-id.
      Response Codes:
      200 OK: Successfully retrieved the list of files. The response body will typically contain a JSON array of file objects, each with details like file name, size, and other relevant metadata. Example:
      [
        {
          "name": "file1.txt",
          "size": 1024,
          "lastModified": "2024-10-27T10:00:00Z"
        },
          {
          "name": "image.png",
          "size": 2048,
          "lastModified": "2024-10-27T11:00:00Z"
        }
      ]
      400 Bad Request: Invalid request parameters (e.g., malformed bucketId).
      404 Not Found: The specified bucket does not exist.
      500 Internal Server Error: Server error.

      Request

      Authorization
      Provide your bearer token in the
      Authorization
      header when making requests to protected resources.
      Example:
      Authorization: Bearer ********************

      Request samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://api.everabyte.io/api/files/findAll/c0awv0oseisvm83lru953k12'

      Responses

      🟢200Success
      application/json
      Body
      object {0}
      Example
      {}
      Next
      Detail
      Built with