Trigger your Fetch Hive Workflows via endpoints.
Last updated 24 days ago
Trigger a workflow to run
"fetchhive"
"production"
Successful response
const response = await fetch('https://api.fetchhive.com/v1/workflows/invoke', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "endpoint": "fetchhive", "variant": "production", "inputs": {} }), }); const data = await response.json();
{ "output": "text" }