# AgentToll Security Policies Lookup

> AgentToll Security Policies Lookup is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves the security policies enforced by the AgentToll platform, such as PII handling and data governance rules.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/security/policies
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-security-policies-lookup-32e5362e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vi7U5dibbWwScjUd4lDj3

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 agenttoll-security-policies-lookup-32e5362e -d '<json body>'
```

Example prompt: What security policies does AgentToll enforce on its paid AI tools platform — specifically around PII and data logging?

## When to prefer this

Use this endpoint when you need to programmatically verify the security and data governance posture of the AgentToll platform before integrating it into a compliance-sensitive workflow, or when auditing the platform's PII and logging policies for enterprise or regulated-industry use.

## Known failure modes

- Invalid or missing payment header returns 402 Payment Required
- Malformed request body returns 400 Bad Request
- Service unavailability returns 503
- Policy list may be sparse or incomplete if platform is early-stage
- Response schema may evolve as new policies are added

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

Returns a JSON object containing a list of security policy records, each identified by a policy ID (e.g. 'no-pii-in-logs') and potentially additional metadata describing the policy's scope and enforcement rules.

## 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": {
      "profile": {
       "enum": [
        "coding-agent",
        "browser-agent",
        "payment-agent",
        "research-agent"
       ],
       "type": "string"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "policies": [
   {
    "id": "no-pii-in-logs"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-security-policies-lookup-32e5362e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
