# MyCeliaSignal US Unemployment Rate Oracle

> MyCeliaSignal US Unemployment Rate 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 current US unemployment rate as an Ed25519-signed cryptographic attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/econ/us/unrate
- 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-348fbbe7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bfEeuV0gmPnIAdVM3uXlf

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-348fbbe7
```

Example prompt: Can you get me the current US unemployment rate with a cryptographically signed Ed25519 attestation — I need a verifiable oracle response I can trust for an on-chain use case?

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, tamper-evident US unemployment rate suitable for smart contract consumption, DeFi protocols, on-chain dispute resolution, or any auditable workflow requiring proof-of-data-origin. Prefer this over uncredentialed REST APIs when integrity guarantees matter.

## Known failure modes

- Payment not provided or insufficient — HTTP 402 returned requiring $1 USDC via x402 protocol
- Data source temporarily unavailable — upstream economic data feed outage
- Invalid or expired payment token — request rejected before data is returned
- Rate limit exceeded — too many requests in a short window
- Signature verification failure downstream — if Ed25519 public key is incorrect on consumer side

## How this service works

US unemployment rate — latest BLS jobs market reading for Fed dual mandate tracking — Ed25519 signed attestation

## Output

Returns the current US unemployment rate value (e.g. 3.9%) along with an Ed25519 digital signature that cryptographically attests the data's authenticity and provenance, enabling downstream verification in smart contracts or auditable systems.

## 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-348fbbe7/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)
