tasks

ittybit tasks [task_id] [flags]

List, inspect, or create local tasks. Without arguments, lists recent tasks. With a task ID, shows details.

List tasks

ittybit tasks
ittybit tasks \
  --kind video
ittybit tasks \
  --status failed
ittybit tasks \
  --limit 20
FlagDescription
--kindFilter by task kind (video, audio, image, adaptive_video)
--statusFilter by status (succeeded, failed, etc.)
--limitNumber of results (default 10)
--beforeShow tasks before this ID
--afterShow tasks after this ID

Inspect a task

ittybit tasks task_01h455vb4pex5vsknk084sn02q

tasks create

Create and run a task from a JSON body:

ittybit tasks create \
  --body '{"kind":"video","input":"input.mp4","options":{"format":"mp4"}}'

Or pipe from stdin:

echo '{"kind":"image","input":"photo.jpg","options":{}}' | \
  ittybit tasks create \
  --body -

See also