# GEDX402 Image Classifier

> GEDX402 Image Classifier is a paid API for AI agents from ged-x402-embed.jvalamis.workers.dev, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Classifies an image into labeled categories with confidence scores, paid per-call via USDC on multiple blockchains with no API key required.

## Facts

- Endpoint: GET https://ged-x402-embed.jvalamis.workers.dev/v1/classify/image
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-image-classifier-749b4dc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BxhJR1Sa6W8cvykklo4J6

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 gedx402-image-classifier-749b4dc1
```

Example prompt: Can you classify what's in this image for me? Here's the base64-encoded image data — tell me what the top label is and how confident the model is.

## When to prefer this

Choose this endpoint when you need keyless, pay-per-call image classification billed in USDC micropayments across Base, Polygon, Arbitrum, World, or Solana — ideal for agents without pre-negotiated API credentials or when you want to avoid subscription overhead for low-volume inference tasks.

## Known failure modes

- Invalid or malformed base64 image data returns an error
- Payment not received or insufficient USDC balance causes 402 rejection
- Unsupported blockchain network for payment causes failure
- Image too large or corrupt may cause inference failure
- Network timeout on Workers edge node

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

Returns a JSON array of classification results, each containing a label string (e.g. 'cat') and a confidence score (e.g. 0.87), ordered by likelihood.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "label": "cat",
    "score": 0.87
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-image-classifier-749b4dc1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ged-x402-embed.jvalamis.workers.dev](https://www.zero.xyz/host/ged-x402-embed.jvalamis.workers.dev/llms.txt)
