Back to Tools

File Manager

Storage

Read, write, and manage files in cloud storage. Supports multiple formats including text, JSON, CSV, and binary files.

Available Actions
readwritelistdelete
Input Schema
{
  "type": "object",
  "required": [
    "action",
    "path"
  ],
  "properties": {
    "path": {
      "type": "string"
    },
    "action": {
      "enum": [
        "read",
        "write",
        "list",
        "delete"
      ],
      "type": "string"
    },
    "content": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "string"
    },
    "files": {
      "type": "array"
    },
    "success": {
      "type": "boolean"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/file-manager

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/file-manager \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "read"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.