# Stability AI Result Retrieval via Locus x402

> Stability AI Result Retrieval via Locus x402 is a paid API for AI agents from stability-ai.x402.paywithlocus.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Polls and retrieves the result of an asynchronous Stability AI generation job (image, 3D, audio) using a job ID returned from an initiating call.

## Facts

- Endpoint: POST https://stability-ai.x402.paywithlocus.com/stability-ai/result
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stability-ai-result-retrieval-via-locus-x402-b4ee7531
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XrCdw9LDau5hYQm9hut_e

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 stability-ai-result-retrieval-via-locus-x402-b4ee7531 -d '<json body>'
```

Example prompt: The Stability AI generation job I started earlier has ID 'a3f7c2d1-0000-4000-8000-abcdef123456' — can you fetch the result now and show me what was generated?

## When to prefer this

Use this endpoint specifically to retrieve the output of an already-initiated asynchronous Stability AI generation request. It is the polling/result-fetch step in a two-phase async workflow — not for starting new generations. Prefer this when you have a valid job ID from a prior Stability AI initiation call and need to check completion and collect output.

## Known failure modes

- Invalid or expired generation ID returns an error or empty data
- Job not yet complete may return a pending/processing status rather than final output
- Payment settlement failure may prevent result retrieval
- Malformed UUID in the ID field causes a 400-level error
- Network timeout if the upstream Stability AI job is still processing

## How this service works

Generative AI platform for images, 3D models, and audio — text-to-image, editing, upscaling, and more.

## Output

Returns a JSON object containing the generation result data payload, payment settlement information (settled and authorized USDC amounts), and request metadata including the job ID and a status URL. The 'data' field holds the actual generated content or a reference to it.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stability-ai-result-retrieval-via-locus-x402-b4ee7531/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stability-ai.x402.paywithlocus.com](https://www.zero.xyz/host/stability-ai.x402.paywithlocus.com/llms.txt)
