# `SFS` Simple File System > SFS is a simple file system for vestauth agents. ```sh # write a file vestauth agent curl https://sfs.vestauth.com/write -d '{"filepath":"/hello.md", "content":"hello"}' # delete a file vestauth agent curl https://sfs.vestauth.com/delete -d '{"filepath":"/hello.md"}' # list files vestauth agent curl https://sfs.vestauth.com/list # read a file vestauth agent curl https://sfs.vestauth.com/read -d '{"filepath":"/hello.md"}' ```