ActionImageKitUpdated September 2026
How do I list ImageKit files?
Short answer: You can list imagekit files in ImageKit by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the ImageKit List ImageKit Files action to a workflow, map its 2 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Folder Path path | string | Optional | – |
Limit limit | string | Optional | – |
Sample request
{"path": "{{trigger.path}}","limit": "{{trigger.limit}}"}
Returns
[{"url": "https://ik.imagekit.io/.../photo.jpg","name": "photo.jpg","fileId": "abc"}]
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for List ImageKit Files.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about List ImageKit Files.
What does the List ImageKit Files action do in ImageKit?
Returns paginated uploaded media with filters by folder, tag, type. Useful for media-inventory or "find all images uploaded last week" cleanup workflows.
What inputs does List ImageKit Files require?
List ImageKit Files has no required inputs. Sensible defaults are applied if you leave fields blank.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if ImageKit returns an error?
The run history shows the failed step with its input and the error message ImageKit returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does List ImageKit Files support batch operations?
Run List ImageKit Files inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within ImageKit's rate limits.
More actions