# StableStudio Delete Failed Job

> StableStudio Delete Failed Job is a free API for AI agents from StableStudio at stablestudio.dev, Free, status unknown (last checked 2026-09-14).

Soft-deletes a failed AI media generation job by its job ID on StableStudio

## Facts

- Endpoint: DELETE https://stablestudio.dev/api/jobs/:jobId
- Price: Free
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: StableStudio
- Docs: https://stablestudio.dev
- Website: https://stablestudio.dev
- Tags: image, video, generation, nano-banana, gpt-image, grok, flux, sora, veo, seedance, wan, ai, media
- Canonical page: https://www.zero.xyz/c/stablestudio-jobid-14a0cd7a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yez-I_FMdX9eXRpR5oNEC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablestudio-jobid-14a0cd7a -d '<json body>'
```

Example prompt: That StableStudio job with ID job_abc123 failed — can you soft-delete it to clean it up?

## When to prefer this

Use this endpoint when you need to clean up or dismiss a job on StableStudio that has entered a failed state, freeing up queue space or removing clutter. Prefer this over hard-delete alternatives when you want to preserve some audit trail of the failed job.

## Known failure modes

- Job ID not found — returns 404 if the jobId does not exist
- Job is not in a failed state — endpoint may reject deletion of active or completed jobs
- Unauthorized — missing or invalid authentication credentials
- Already deleted — idempotent call on an already-deleted job may return 200 or 404 depending on implementation

## How this service works

Soft-delete a failed job

## Output

A confirmation that the specified failed job has been soft-deleted from StableStudio, effectively removing it from the active job queue without permanently purging its record.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "size": {
   "enum": [
    "720x1280",
    "1280x720"
   ],
   "type": "string",
   "default": "1280x720",
   "description": "Video resolution (portrait or landscape)"
  },
  "prompt": {
   "type": "string",
   "minLength": 1,
   "description": "A detailed description of the video you want to generate"
  },
  "seconds": {
   "enum": [
    "4",
    "8",
    "12"
   ],
   "type": "string",
   "default": "4",
   "description": "Duration of the video in seconds"
  },
  "autoCrop": {
   "type": "boolean",
   "default": true,
   "description": "Automatically crop reference image to match aspect ratio"
  },
  "input_reference": {
   "type": "string",
   "format": "uri",
   "description": "Optional reference image URL for image-to-video generation"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablestudio-jobid-14a0cd7a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablestudio.dev](https://www.zero.xyz/host/stablestudio.dev/llms.txt)
