# Ausca Remote Browser Session Lease

> Ausca Remote Browser Session Lease is a paid API for AI agents from ausca.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Provisions a metered, time-limited remote browser session (10, 30, or 60 minutes) payable per-call via x402, returning a session ID and lease expiry without requiring an account or provider API keys.

## Facts

- Endpoint: POST https://ausca.com/v1/lease-browser
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ausca-remote-browser-session-lease-d2149419
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cBrvYjSCOcbKg14n6nOEH

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 ausca-remote-browser-session-lease-d2149419 -d '<json body>'
```

Example prompt: Spin up a remote browser session for 10 minutes so I can automate a checkout flow — I need a verifiable receipt when it's done.

## When to prefer this

Choose this endpoint when an AI agent needs on-demand, accountless, pay-per-use remote browser access with cryptographically verifiable receipts and explicit per-call pricing. Prefer over self-hosted browser infrastructure when you want zero setup, metered cost (only pay for sessions you open), and built-in x402 payment flow. Best for agents that need short bursts of web automation (10–60 min) without managing browser pools or provider credentials.

## Known failure modes

- Invalid duration_seconds value (must be 600, 1800, or 3600) — schema validation error
- Payment not received or insufficient USDC — 402 Payment Required
- Duplicate idempotency_key with mismatched parameters — conflict error
- Session provisioning backend unavailable — 503 or timeout
- Mismatched input_schema_digest or output_schema_digest — canonicalization mismatch error
- Expired or invalid offer_revision — offer not recognized

## How this service works

Lease one ordinary remote browser with standard CDP access for 10, 30, or 60 minutes. No automation, proxy, stealth, or target-success promise.

## Output

Returns a JSON object with status 'accepted', an invocation record containing the output resource_lease (schema ausca.browser_session.lease.v1) with a session_id (e.g. brs_...), created_at and expires_at timestamps, a verifiable receipt_ref URI, an invocation_id, and output and offer_revision digests for cryptographic verification.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "accepted",
  "invocation": {
   "state": "succeeded",
   "output": {
    "resource_lease": {
     "state": "ready",
     "schema": "ausca.browser_session.lease.v1",
     "created_at": "2026-09-01T00:00:00Z",
     "expires_at": "2026-09-01T00:10:00Z",
     "session_id": "brs_abcdefghijklmnopqrstuv"
    }
   },
   "updated_at": "2026-01-01T00:00:00Z",
   "receipt_ref": {
    "uri": "runx:receipt:discovery-example",
    "type": "receipt"
   },
   "invocation_id": "ausca-discovery-example",
   "output_digest": "sha256:e9816aabe63e16405274d6cb4c7ac7b02e6f2046d0e10ebcf4107dab3be3f65f",
   "offer_revision_digest": "sha256:0ff5f7e5d6c4f261fc3824ba6ac779f126998cd266052c8c2b64230f1526746e"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ausca-remote-browser-session-lease-d2149419/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ausca.com](https://www.zero.xyz/host/ausca.com/llms.txt)
