# RelayStation Celebrity Detection

> RelayStation Celebrity Detection is a paid API for AI agents from api.relaystation.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Recognizes celebrities in an image and returns their names with confidence scores using AWS Rekognition

## Facts

- Endpoint: POST https://api.relaystation.ai/v1/vision/detect-celebrities
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/relaystation-celebrity-detection-fe314ca4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5aCIGpYGCYnvswlfKttoN

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 relaystation-celebrity-detection-fe314ca4 -d '<json body>'
```

Example prompt: Can you tell me which celebrities appear in this photo? Here's the image URL: https://example.com/red-carpet-photo.jpg — I need their names and how confident you are about each one.

## When to prefer this

Choose this endpoint when you need to identify specific named celebrities (public figures) in an image with confidence scores, as opposed to generic object or face detection. It is backed by AWS Rekognition's celebrity database, making it well-suited for media, entertainment, journalism, and content moderation workflows where knowing who appears in an image matters — not just that a person is present.

## Known failure modes

- Image URL is inaccessible or returns a non-image response — endpoint cannot fetch the content
- No celebrities detected — returns an empty list rather than an error
- Low-confidence matches may include false positives for look-alike individuals
- Image too small or face too obscured for recognition — returns empty or low-confidence results
- Unsupported image format — may return an error if the format is not JPEG/PNG/GIF/WebP
- Payment failure via x402 — call is rejected if USDC balance is insufficient

## How this service works

$0.005/image. Recognize celebrities in an image (Rekognition) — names with confidence scores. 1¢ x402 min; remainder auto-credits — relaystation.ai/penny

## Output

Returns a list of detected celebrities, each with their name, a confidence score (0–100), and optionally bounding box coordinates indicating where in the image each celebrity appears.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "file": {
       "type": "object",
       "description": "cputools input-source: { inline: <base64 ≤ 4 MiB> } or { inputKey: <scratch key from /v1/cputools/upload-url, ≤ 50 MB> }."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/relaystation-celebrity-detection-fe314ca4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relaystation.ai](https://www.zero.xyz/host/api.relaystation.ai/llms.txt)
