# GlianaAI Screenshot Tool

> GlianaAI Screenshot Tool is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Captures a screenshot of a webpage or URL and returns the result, billed per-call via USDC micropayment on Base, Tempo, or Solana.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/screenshot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-screenshot-tool-e29924c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1J1mohO8ud8t_CNyQB_y9

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-screenshot-tool-e29924c8
```

Example prompt: Can you take a screenshot of https://example.com right now and show me what it looks like? Just pay the $0.005 fee using USDC.

## When to prefer this

Choose this endpoint when you need a no-signup, pay-per-call screenshot service that settles instantly in USDC via x402/MPP on Base, Tempo, or Solana — ideal for autonomous AI agents that lack API key management and need ad-hoc web capture at $0.005 per call.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Missing required 'input' body fields returns a validation error
- Payment not settled results in 402 Payment Required response
- Non-GET method specified causes rejection
- Timeout if target URL is slow to load

## How this service works

GlianaAI - pay-per-call AI, market data and identity APIs, no signup, USDC. This resource: tools/screenshot. Capture a rendered web page as a PNG. https://ai.glianalabs.com

## Output

A JSON response containing the tool name and the screenshot output from the requested URL, paid at $0.005 USDC per call via x402 micropayment protocol.

## 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/screenshot"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-screenshot-tool-e29924c8/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)
