# ConnSkill EU Embeddings (GDPR-Compliant)

> ConnSkill EU Embeddings (GDPR-Compliant) is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Generates text embeddings for up to 64 strings per call, processed exclusively in Germany with GDPR compliance and no input logging or training.

## Facts

- Endpoint: POST https://agent.connskill.com/ai/v1/eu-embed
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/connskill-eu-embeddings-gdpr-compliant-df795d8f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qdmEEU51ImvEaN9g7V2Dy

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 connskill-eu-embeddings-gdpr-compliant-df795d8f -d '<json body>'
```

Example prompt: Generate GDPR-compliant embeddings for these three sentences processed in Germany — no logging or training on my data: ['User complaint about billing', 'Request for account deletion', 'Positive feedback on support'].

## When to prefer this

Choose this endpoint when you need text embeddings and have GDPR, data residency, or EU compliance requirements — particularly when inputs contain PII or sensitive data that must not leave Germany, must not be used for training, and must not be logged. Prefer it over general-purpose embedding APIs (OpenAI, Cohere, etc.) when regulatory compliance or contractual data processing agreements require EU-only processing.

## Known failure modes

- Input array exceeds 64 strings — API likely returns a 400 or validation error
- Empty input array or missing 'input' field — returns 422 or bad request
- Individual strings that are too long may be truncated or rejected
- Payment failure via x402 protocol results in 402 response before processing
- Transient server-side errors in the German data center return 5xx responses

## How this service works

Market data and real-world actions for AI agents: keyword and SERP research by location, SMS verification, receive-only inboxes, social marketing, EU-hosted LLMs. Paid per call in USDC on Base. No account, no API key, no minimum.

## Output

Returns a JSON object with a 'status' field indicating success and an 'embeddings' array containing one vector per input string, suitable for downstream semantic search, clustering, or retrieval-augmented generation tasks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": [
    "string",
    "array"
   ],
   "description": "String or array of up to 64 strings, at most 8192 UTF-8 input bytes in total"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "model": "Qwen3-Embedding-8B",
  "status": "delivered",
  "dimensions": 4096
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/connskill-eu-embeddings-gdpr-compliant-df795d8f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.connskill.com](https://www.zero.xyz/host/agent.connskill.com/llms.txt)
