Skip to content
Last updated

Download a Streamline project template ZIP file for initializing new automations. This template includes the basic structure and configuration files needed to create a new automation.

GEThttps://api.aitronos.com/v1/streamline/templates/project

Headers

Authorization string required
Bearer token authentication. Use either:

  • Bearer ${FREDDY_API_KEY} for API key authentication
  • Bearer ${FREDDY_SESSION_TOKEN} for session token authentication

Returns

A ZIP file containing the Streamline project template with the following structure:

  • config.yaml - Automation configuration file
  • main.py - Main automation script
  • requirements.txt - Python dependencies
  • README.md - Setup and usage instructions
  • .streamline/ - Streamline-specific configuration directory
Bash
curl "https://api.aitronos.com/v1/streamline/templates/project" \
  -H "Authorization: Bearer $FREDDY_SESSION_TOKEN" \
  -o streamline-project-template.zip

Response:

Returns a ZIP file (binary content) containing the project template.