# SlinkeyLayer Text Anonymization

> SlinkeyLayer Text Anonymization is a paid API for AI agents from x402.slinkylayer.ai, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-14).

Anonymizes sensitive personal information (PII) in text using configurable AI providers such as Azure.

## Facts

- Endpoint: POST https://x402.slinkylayer.ai/api/v1/proxy/2ce94988-5413-4458-bac6-5c523d998dc5/text-anonymize
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-slinkylayer-ai-4f6ace06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hCy6-VWfeOuHwSidverEl

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 x402-slinkylayer-ai-4f6ace06 -d '<json body>'
```

Example prompt: Anonymize this English customer support message using the Azure provider so we can store it safely: 'Hi, my name is John Smith, my email is john@example.com and my phone is 555-1234 — please help me with my order.'

## When to prefer this

Choose this endpoint when you need to redact or anonymize PII from free-form text before storage, sharing, or analysis — especially when compliance (GDPR, HIPAA) is a concern and you want a pay-per-call, provider-agnostic solution without managing your own NLP infrastructure.

## Known failure modes

- Missing required fields (text, language, or requested_service) returns a 400 validation error
- Unsupported language code may result in degraded or failed anonymization
- Invalid or unrecognized requested_service value returns an error
- Azure provider misconfiguration or quota exhaustion returns a 502 or provider error
- Very long text inputs may hit token or payload size limits
- Network timeout for slow provider responses

## How this service works

Accepts JSON input and anonymizes sensitive information in the provided text using the selected provider (Azure or others).

## Output

Returns the input text with sensitive entities (names, emails, phone numbers, addresses, etc.) replaced or masked, using the selected provider's anonymization model.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text",
  "language",
  "requested_service"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "language": {
   "type": "string"
  },
  "requested_service": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "input": {
  "type": "http",
  "method": "POST",
  "bodyType": "json",
  "bodyFields": {
   "text": {
    "type": "string",
    "required": false
   },
   "azure": {
    "type": "object",
    "required": false,
    "properties": {
     "key": {
      "type": "string"
     },
     "endpoint": {
      "type": "string"
     }
    }
   },
   "language": {
    "type": "string",
    "required": true
   },
   "requested_service": {
    "type": "string",
    "required": true
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-slinkylayer-ai-4f6ace06/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.slinkylayer.ai](https://www.zero.xyz/host/x402.slinkylayer.ai/llms.txt)
