API Reference
Complete reference for the Lodol REST API.
API Reference
The Lodol API is a RESTful API that uses JSON for request and response bodies. All endpoints are available at:
https://app.skipflow.com/api/v1Request Format
All requests must include:
Authorizationheader with your API keyContent-Type: application/jsonfor request bodies
curl -X GET https://app.skipflow.com/api/v1/workflows \
-H "Authorization: Bearer sk_live_your_api_key" \
-H "Content-Type: application/json"Pagination
List endpoints support cursor-based pagination using the after and limit parameters:
| Parameter | Type | Description |
|---|---|---|
limit | integer | Max results to return (1-100, default 20) |
after | string | Cursor: the ID of the last item from the previous page |
# First page
curl https://app.skipflow.com/api/v1/executions?limit=20 \
-H "Authorization: Bearer sk_live_your_api_key"
# Next page (use the last execution_id from the previous response)
curl https://app.skipflow.com/api/v1/executions?limit=20&after=665f1a2b3c4d5e6f7a8b9c0d \
-H "Authorization: Bearer sk_live_your_api_key"