Functions
List functions
Retrieve all serverless functions for your project. Functions are custom JavaScript code that runs on-demand in response to API invocations.
Use this endpoint to:
- List all configured functions
- Review function deployment status
- Audit function creation and updates
GET
List functions
Previous
Create functionCreate a new serverless function in draft status. The function will be saved but not deployed to the runtime platform.
After creating a function:
1. Review and test the code locally
2. Deploy using POST /functions/{id}/deploy
3. Invoke using POST /functions/{id}/invoke
Choose function_type based on your deployment requirements:
- `cloudflare_worker`: Fast global edge deployment with standard JavaScript
- `supabase_function`: Deno runtime with built-in Supabase client
The function slug will be auto-generated from the name if not provided (lowercase with hyphens).
Next
List functions

