# Tanship PayAI Console — Browser Forms Automation

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

Submits HTTP requests to web forms via a payment-gated browser automation service using the x402 micropayment protocol

## Facts

- Endpoint: POST https://x402.tanship.dev/v1/browser/forms
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tanship-payai-console-browser-forms-automation-cdb0b2f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Bzj9pjpzCYNc5343scHgO

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-forms-automation-cdb0b2f0 -d '<json body>'
```

Example prompt: Submit a POST request to a web form for me — send JSON body data to the target endpoint and give me back the response; I'll pay the micropayment via USDC on Base.

## When to prefer this

Choose this endpoint when you need to submit HTTP POST requests to web forms or endpoints via browser automation and are willing to pay per-call in USDC via the x402 micropayment protocol. Ideal for AI agents that need to interact with web forms programmatically without managing a browser session themselves, and particularly suited for low-volume, pay-as-you-go automation where spinning up a dedicated browser infrastructure is overkill.

## Known failure modes

- Payment not received or insufficient USDC balance — x402 payment required before request is processed
- Invalid or missing required fields (type, method, bodyType, body) — 400 Bad Request
- Target web endpoint is unreachable or returns an error — upstream HTTP failure propagated in response
- Unsupported bodyType value — must be one of json, form-data, or text
- x402 protocol version mismatch — ensure x402 v2 exact scheme is used

## 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 the HTTP response from the target web form or endpoint after the browser automation layer has submitted the request, including status and any response body data returned by the destination server.

## 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-forms-automation-cdb0b2f0/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)
