# Mycelia Signal DXY Dollar Index Oracle

> Mycelia Signal DXY Dollar Index 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 current DXY US Dollar Index value as a cryptographically signed (Ed25519) attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/econ/commodities/dxy
- 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-5a3ad0c5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q5CJdvcxP732KbcQexEvS

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-5a3ad0c5
```

Example prompt: Can you fetch me the latest DXY US Dollar Index reading from the Mycelia Signal oracle, with the Ed25519 signed attestation so I can verify it on-chain?

## When to prefer this

Use this endpoint when you need a cryptographically attested (Ed25519 signed) DXY US Dollar Index value — especially for smart contract oracles, on-chain verification, or any workflow requiring tamper-proof economic data with provable authenticity. Prefer this over unsigned data feeds when trust and verifiability are essential.

## Known failure modes

- Payment not provided or insufficient (402 Payment Required)
- Upstream DXY data feed unavailable (503 Service Unavailable)
- Invalid or expired attestation signature returned
- Rate limiting or quota exceeded
- Network timeout fetching live index data

## How this service works

DXY US dollar index — broad USD strength measure for FX positioning and commodity hedging — Ed25519 signed attestation

## Output

Returns the current DXY US Dollar Index value accompanied by an Ed25519 cryptographic signature, providing a tamper-proof attestation of the data suitable for on-chain or off-chain verification.

## 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-5a3ad0c5/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)
