curl --request GET \
  --url https://api.frigade.com/v1/public/flows \
  --header 'Authorization: Bearer <token>'

The Flows endpoint returns a list of Flows available in your account. The endpoint supports pagination and filtering.

Example response

{
    "data": [
        {
            "id": 1765,
            "customerId": 2,
            "organizationId": 2,
            "name": "New checklist",
            "data": "{\"data\":[{\"id\":\"welcome\",\"stepName\":\"Welcome to Frigade\",\"title\":\"Check out our interactive demo.\",\"subtitle\":\"We built Frigade to help developers build high-quality onboarding and education.\",\"primaryButtonTitle\":\"Mark complete\",\"imageUri\":\"https://frigade.com/img/frigade-image.webp\"},{\"id\":\"demo\",\"stepName\":\"Schedule a demo\",\"title\":\"Let's talk!\",\"subtitle\":\"Want to see how we built this demo? Grab a time with one of our team members to see the product and learn more.\",\"primaryButtonTitle\":\"Schedule a demo\",\"urlTarget\":\"_blank\",\"url\":\"https://cal.com/team/frigade/frigade-demo\",\"imageUri\":\"https://frigade.com/img/demo-image.webp\"},{\"id\":\"almost-done\",\"stepName\":\"Complete demo\",\"title\":\"Almost done...\",\"subtitle\":\"There's only one thing left to do.\",\"primaryButtonTitle\":\"Finish\",\"imageUri\":\"https://frigade.com/img/frigade-image.webp\"}]}",
            "description": "",
            "createdAt": "2023-03-28T00:13:50.918Z",
            "modifiedAt": "2023-03-28T00:13:50.918Z",
            "version": 1,
            "slug": "flow_T8Dx79IYn1o6b9xI",
            "targetingLogic": null,
            "type": "CHECKLIST",
            "triggerType": "MANUAL"
        }
    ],
    "offset": 0,
    "limit": 100
}