Retrieves all runs for a specific flow
Flow runs retrieved successfully
const response = await fetch('https://api.laminar.run/flows/{id}/runs', { method: 'GET', headers: {}, }); const data = await response.json();
text