# QuokkaPix Agent Unlock

> QuokkaPix Agent Unlock is a paid API for AI agents from quokkapix.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Issues a session unlock token for QuokkaPix batch/scenario image processing, keeping images local in the user's browser

## Facts

- Endpoint: GET https://quokkapix.com/api/agent-unlock/coinbase-x402
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quokkapix-agent-unlock-0bef418c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-V0UjzFu2yTC20X-lNuf

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 quokkapix-agent-unlock-0bef418c
```

Example prompt: Unlock QuokkaPix for my browser agent session so I can run batch image scenarios — images stay local in my browser.

## When to prefer this

Use this endpoint when an AI agent needs to unlock QuokkaPix batch image processing or scenario features in a browser-local context and is willing to pay $0.01 USDC via the x402 protocol. Prefer this over alternative auth flows when the Coinbase x402 payment rail is available and images must remain on-device in the browser.

## Known failure modes

- Payment not received or x402 flow incomplete — returns 402 Payment Required
- Invalid or missing request parameters — returns 400 Bad Request
- Token issuance backend unavailable — returns 503 Service Unavailable
- Expired or replayed payment — returns 401 Unauthorized

## How this service works

QuokkaPix image agent unlock for image-standard. Media stays local on the user's device.

## Output

Returns a JSON object containing an unlockToken (string), tokenType, provider name, scope of access, price and currency of the unlock, payment rail used, expiry timestamp, maxFiles allowed, and freeBatchMaxFiles — everything needed to authorize subsequent QuokkaPix batch/scenario operations.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "unlockToken",
      "tokenType",
      "provider",
      "scope",
      "productId",
      "surface",
      "price",
      "currency"
     ],
     "properties": {
      "rail": {
       "type": "string"
      },
      "price": {
       "type": "string"
      },
      "scope": {
       "type": "string"
      },
      "usage": {
       "type": "object"
      },
      "surface": {
       "enum": [
        "image",
        "video"
       ],
       "type": "string"
      },
      "currency": {
       "type": "string"
      },
      "issuedAt": {
       "type": "number"
      },
      "provider": {
       "type": "string"
      },
      "expiresAt": {
       "type": "number"
      },
      "productId": {
       "type": "string"
      },
      "tokenType": {
       "type": "string"
      },
      "unlockToken": {
       "type": "string"
      },
      "expiresInSeconds": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quokkapix-agent-unlock-0bef418c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from quokkapix.com](https://www.zero.xyz/host/quokkapix.com/llms.txt)
