jobs

View Markdown
ittybit jobs [job_id] [flags]

List, inspect, or create jobs. Without arguments, lists recent jobs. With a job ID, shows details.

List jobs

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

Inspect a job

ittybit jobs job_01h455vb4pex5vsknk084sn02q

jobs create

Create and run a job from a JSON body:

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

Or pipe from stdin:

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

See also