Search for workflows by partial name match.
Python
import requests url = 'https://api.simplex.sh/search_workflows' headers = { 'Authorization': 'Bearer your_api_key_here' } params = { 'workflow_name': 'copy' # Partial name to search for } response = requests.get(url, headers=headers, params=params) result = response.json() print(f"Found {result['count']} workflows") for workflow in result['workflows']: print(f" - {workflow['workflow_name']} (ID: {workflow['workflow_id']})")
{ "succeeded": true, "workflows": [ { "workflow_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "workflow_name": "<string>" } ], "count": 123 }
Simplex API Key
Partial workflow name to search for
Search workflows response
Whether the search was successful.
List of matching workflows.
Show child attributes
Total number of matching workflows.
Was this page helpful?