Removed Endpoints

As part of the ongoing API simplification, the following endpoints have been removed:


/files

The /files endpoint and the File concept have been removed. Task inputs and outputs are now represented directly as objects within the inputs and outputs arrays on task responses.


/media

The /media endpoint and the Media concept (with med_ prefixed IDs) have been removed. Tasks and Runs are now the primary resources for working with media.


/signatures

The /signatures endpoint for generating upload signatures has been removed. To get files into Ittybit, use:

  • POST /tasks with a url field pointing to a publicly accessible file
  • POST /runs with an ingest task
  • s3:// URLs with a storage connection for files in your own buckets

Error format

Error responses now include a kind field alongside the message:

{
  "kind": "task_not_found",
  "message": "The task does not exist. Verify the task ID."
}
api
2026-01-15