# 24K Labs AI Image Analyzer

> 24K Labs AI Image Analyzer is a paid API for AI agents from api.24klabs.ai, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Analyzes an image using Claude AI and returns a natural language description of its visual content

## Facts

- Endpoint: POST https://api.24klabs.ai/api/analyze-image
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/24k-labs-ai-image-analyzer-d9e709b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eHBRlKz5LozKbRM_Fj1Az

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 24k-labs-ai-image-analyzer-d9e709b4 -d '<json body>'
```

Example prompt: Can you analyze this dashboard screenshot for me and describe what you see — the layout, charts, and navigation elements? Here's the image: https://example.com/dashboard.png

## When to prefer this

Choose this endpoint when you need pay-per-request image analysis without API key management or subscriptions, especially when operating in a crypto-native or x402 payment context on Base L2. Ideal for agents that need occasional image understanding billed per call in USDC rather than monthly subscription tiers.

## Known failure modes

- Invalid or inaccessible image URL returns error
- Missing required code/content field returns 400
- Payment not processed or insufficient USDC balance blocks request
- Image too large or unsupported format may fail
- Rate limits or model unavailability may return 5xx

## How this service works

A curated directory of x402 services — each one on the list on purpose, with the health, uptime, and independent trust grades from across the ecosystem gathered in one place.

## Output

Returns a JSON object with the model used (claude-haiku-4-5), a natural language result string describing the image contents, and the number of tokens consumed. Cost is $0.08 USDC per call, paid on Base L2.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "code": {
   "type": "string",
   "description": "Primary input content"
  },
  "context": {
   "type": "string",
   "description": "Optional context or instructions"
  },
  "language": {
   "type": "string",
   "description": "Programming language (code services)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "claude-haiku-4-5",
  "result": "The image shows a dashboard with a sidebar nav, main chart area...",
  "tokens_used": 240
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/24k-labs-ai-image-analyzer-d9e709b4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.24klabs.ai](https://www.zero.xyz/host/api.24klabs.ai/llms.txt)
