# Tanship PayAI Console — Browser Screenshot API

> Tanship PayAI Console — Browser Screenshot API is a paid API for AI agents from x402.tanship.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Captures a screenshot of a web page via browser automation, gated by a $0.01 USDC micropayment on Base using the x402 protocol

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/browser/screenshot
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tanship-payai-console-browser-screenshot-api-17538941
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jzbru0q0NOoum8S5ayz2x

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 tanship-payai-console-browser-screenshot-api-17538941 -d '<json body>'
```

Example prompt: Take a screenshot of https://example.com and give me the resulting image — I'll pay the $0.01 USDC fee via x402 on Base.

## When to prefer this

Choose this endpoint when you need a pay-per-use, no-subscription browser screenshot with micropayment billing via the x402 protocol on Base (USDC). Ideal for AI agents that need on-demand visual page captures without managing API keys or subscriptions, especially in crypto-native or agent-to-agent workflows where x402 payment flows are already supported.

## Known failure modes

- Target URL is unreachable or returns an error — screenshot may fail or return a blank/error page render
- Invalid or malformed URL input causes request rejection
- x402 payment not included or insufficient USDC balance causes HTTP 402 response before processing begins
- Page requires JavaScript-heavy rendering that times out
- Protected or login-gated pages return a login screen rather than the intended content

## How this service works

Payment-gated AI and browser automation API using the x402 protocol. All /v1/* endpoints require USDC payment on Base (eip155:8453) via x402 v2 exact scheme.

## Output

Returns a rendered visual screenshot of the target web page, likely as an image file or base64-encoded image data, reflecting the page's live appearance at the time of the request.

## 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": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tanship-payai-console-browser-screenshot-api-17538941/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.tanship.dev](https://www.zero.xyz/host/x402.tanship.dev/llms.txt)
