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
Authorization string required
Bearer token authentication. Use either:
Bearer ${FREDDY_API_KEY}for API key authenticationBearer ${FREDDY_SESSION_TOKEN}for session token authentication
A ZIP file containing the Streamline project template with the following structure:
config.yaml- Automation configuration filemain.py- Main automation scriptrequirements.txt- Python dependenciesREADME.md- Setup and usage instructions.streamline/- Streamline-specific configuration directory
Bash
- Bash
- Python
- JavaScript
curl "https://api.aitronos.com/v1/streamline/templates/project" \
-H "Authorization: Bearer $FREDDY_SESSION_TOKEN" \
-o streamline-project-template.zipResponse:
Returns a ZIP file (binary content) containing the project template.