# MyceliaSignal US PCE Oracle

> MyceliaSignal US PCE 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-14).

Returns the latest US Personal Consumption Expenditures (PCE) inflation data as a cryptographically signed Ed25519 attestation

## Facts

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

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-eb46ac98
```

Example prompt: Fetch me the latest US PCE inflation reading with a cryptographic Ed25519 signature so I can verify it's authentic before using it in my application.

## When to prefer this

Use this endpoint when you need a cryptographically verifiable, signed attestation of US PCE data — particularly for smart contracts, DeFi protocols, or any application that requires tamper-evident economic data provenance. Prefer this over unsigned data feeds when auditability and non-repudiation are requirements.

## Known failure modes

- Payment not included or invalid — 402 Payment Required response
- Network or upstream data source unavailable — 503 or 500 error
- Rate limit exceeded — 429 Too Many Requests
- Malformed request — 400 Bad Request

## How this service works

US PCE inflation — Fed preferred inflation measure for rate policy forecasting — Ed25519 signed attestation

## Output

A JSON response containing the latest US Personal Consumption Expenditures (PCE) value along with an Ed25519 cryptographic signature attesting to its authenticity, enabling downstream consumers to verify the data has not been tampered with.

## 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-eb46ac98/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)
