ToolAssay

Accepts a task for asynchronous execution and returns the task object — poll `GE

Accepts a task for asynchronous execution and returns the task object — poll `GET /zeroclick/tasks/{id}` for progress. Retried requests with the same `zc-request-id` return the original task and are never charged twice.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
741 msmedian answer time
$1.50listed price per call
$1.50price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://agents.actionlayer.io/zeroclick/tasks

CategoryCode and developer
Provider hostagents.actionlayer.io
Networkseip155:8453, zeroclick:card
Payment schemesexact
Self-reported calls, 30 days17 from 2 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$1.50 741 ms

Example input (from the provider)

{
  "body": {
    "email": "example",
    "task": "example"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "description": "Submit-task body \u2014 deliberately minimal: the task text carries\nevery detail; there are no other knobs on this surface.",
          "properties": {
            "email": {
              "description": "The end user's email address. The task is attached to the ActionLayer account for this address (created if missing), and it's where the user is contacted if a payment needs their approval \u2014 get it right.",
              "maxLength": 254,
              "minLength": 3,
              "title": "Email",
              "type": "string"
            },
            "task": {
              "description": "The task, in natural language. Include every detail the task needs \u2014 addresses, dates, quantities, preferences.",
              "maxLength": 100000,
              "minLength": 1,
              "title": "Task",
              "type": "string"
            }
          },
          "required": [
            "task",
            "email"
          ],
          "title": "ZeroClickTaskRequest",
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON