# GlianaAI Face Detection

> GlianaAI Face Detection is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Detects and localizes human faces in an image using pay-per-call AI inference settled via x402/USDC

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/face-detect
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-face-detection-9367ae09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JpzFJ_OaB3pRkcVzfVtYk

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 glianaai-face-detection-9367ae09
```

Example prompt: Can you run face detection on this photo and tell me where the faces are and how many were found?

## When to prefer this

Choose this endpoint when you need lightweight, pay-as-you-go face detection without a subscription or API key, especially in autonomous agent workflows that can settle micropayments in USDC on Base, Tempo, or Solana via x402. Ideal for one-off or low-volume face detection tasks where spinning up a dedicated vision API account is impractical.

## Known failure modes

- No image provided — missing required input body
- Invalid image URL or unreadable image format returns an error
- Payment failure — insufficient USDC balance or unsupported payment network
- Image contains no faces — returns empty detection results
- Rate limit or quota exceeded on the GlianaLabs platform
- Malformed HTTP request body type (must be json, form-data, or text)

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

A JSON response indicating detected faces in the image, likely including bounding box coordinates, confidence scores, and count of faces found, labeled under the tool identifier 'tools/face-detect'.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "tools/face-detect"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-face-detection-9367ae09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
