POST
/
action
/
save_to_file
curl --request POST \
  --url https://api-lr.agent.ai/v1/action/save_to_file \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "file_type": "pdf",
  "body": "# Sample Document\n\nThis is a sample document content that will be saved to a file.",
  "output_variable_name": "saved_file"
}'
{
  "status": 200,
  "response": {
    "saved_file": "https://s3.example.com/asset-uploads/document.pdf"
  }
}

Authorizations

Authorization
string
header
required

Bearer token from your account (https://agent.ai/user/settings#credits)

Body

application/json
file_type
enum<string>
required

Enter the output file type (i.e. PDF).

Available options:
pdf,
docx,
html,
md,
odt,
tex,
azw3,
epub,
png
Example:

"pdf"

body
string
required

Provide the content to be saved in the file, including text, bullet points, or other structured information.

Example:

"# Sample Document\n\nThis is a sample document content that will be saved to a file."

output_variable_name
string
required

Provide a variable name to store the file URL to.

Example:

"saved_file"

Response

200
application/json
File saved successfully
status
integer

HTTP status code of the action response

response
object

Response data from the action