Lodol Docs

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/v1

Request Format

All requests must include:

  • Authorization header with your API key
  • Content-Type: application/json for 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:

ParameterTypeDescription
limitintegerMax results to return (1-100, default 20)
afterstringCursor: 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"

Available Resources

On this page