# MyceliaSignal EU Employment Oracle

> MyceliaSignal EU Employment Oracle is a paid API for AI agents from api.myceliasignal.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Returns the latest EU employment data as an Ed25519-signed cryptographic attestation for on-chain or verifiable use

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/econ/eu/employment
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-myceliasignal-com-0d6d5a78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7TXoH7DSkWBXgZjx4auN6

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 api-myceliasignal-com-0d6d5a78
```

Example prompt: Can you get me the latest EU employment figure with a cryptographic Ed25519 attestation so I can use it in a smart contract?

## When to prefer this

Choose this endpoint when you need EU employment data with cryptographic provenance guarantees — especially for smart contract oracles, DeFi protocols, or any system that must verify data integrity without trusting an intermediary. Prefer over raw data APIs when Ed25519 signature verification is required by downstream consumers.

## Known failure modes

- Payment not provided or insufficient — returns HTTP 402 requiring $1 USDC via x402 protocol
- EU employment data temporarily unavailable from source — may return 503 or error payload
- Invalid or expired payment — authentication/payment rejection
- Rate limiting — too many requests in a short window

## How this service works

EU employment change — eurozone jobs data for ECB policy and EUR macro exposure — Ed25519 signed attestation

## Output

A signed payload containing the current EU employment statistic, along with an Ed25519 digital signature that allows downstream consumers (smart contracts, agents, or auditors) to verify the data was produced by MyceliaSignal without tampering. Likely includes the employment value, a timestamp, and the signature bytes.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
    }
   }
  }
 }
}
```

## More

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