# Misfit AI Image Generation – jjtest22 Model

> Misfit AI Image Generation – jjtest22 Model is a paid API for AI agents from misfit.spot, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Generates images from a text prompt using the artist-trained AI model jjtest22 hosted on the Misfit platform

## Facts

- Endpoint: POST https://misfit.spot/api/x402/models/27597e91-cf5e-4039-92dc-e8926a2e8ba0/generate
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/misfit-ai-image-generation-jjtest22-model-358e9579
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ff6oEqfdTVdaapoHJu8uA

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 misfit-ai-image-generation-jjtest22-model-358e9579 -d '<json body>'
```

Example prompt: Use the Misfit jjtest22 AI model to generate an image of a neon-lit cyberpunk city street at night with rain reflections on the pavement.

## When to prefer this

Choose this endpoint when you specifically want to generate images using the artist-trained jjtest22 model on Misfit, especially when you want a custom aesthetic or style associated with that model. Prefer this over generic image generation APIs when the jjtest22 model's specific trained style is desired, or when integrating with the Misfit platform's monetized model ecosystem.

## Known failure modes

- Invalid or missing prompt returns a validation error
- Payment failure (insufficient USDC balance) blocks the request via x402
- Model unavailable or cold-start timeout results in a timeout or 503 error
- Replicate backend failure returns an upstream error with no predictionId
- Prompt violates content policy and is rejected with a 400 or 422 error

## How this service works

Generate images using artist-trained AI model: jjtest22

## Output

Returns an object containing an imageUrl (single generated image URL), an images array of generated image URLs, the modelId used (the jjtest22 Misfit model UUID), and a predictionId referencing the underlying Replicate prediction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "prompt"
 ],
 "properties": {
  "prompt": {
   "type": "string",
   "description": "Text prompt describing the image to generate"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "images": {
  "type": "array",
  "description": "Array of generated image URLs"
 },
 "modelId": {
  "type": "string",
  "description": "Misfit model ID used for generation"
 },
 "imageUrl": {
  "type": "string",
  "description": "URL of the generated image"
 },
 "predictionId": {
  "type": "string",
  "description": "Replicate prediction ID"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/misfit-ai-image-generation-jjtest22-model-358e9579/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from misfit.spot](https://www.zero.xyz/host/misfit.spot/llms.txt)
