# MycелiaSignal US Non-Farm Payrolls Oracle

> MycелiaSignal US Non-Farm Payrolls 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 US Non-Farm Payrolls (NFP) figure as a cryptographically signed Ed25519 attestation

## Facts

- Endpoint: GET https://api.myceliasignal.com/oracle/econ/us/nfp
- 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-6611faea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mPDgKme79yEeu5UbT7Tvt

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-6611faea
```

Example prompt: Can you get me the latest US Non-Farm Payrolls figure with a cryptographic Ed25519 signature so I can verify the data hasn't been tampered with?

## When to prefer this

Prefer this endpoint when you need a cryptographically verifiable, tamper-proof US Non-Farm Payrolls reading — especially for smart contract inputs, DeFi protocols, automated trading strategies, or any downstream system that needs to audit the provenance of the economic data via Ed25519 signature verification.

## Known failure modes

- Payment not provided or insufficient — 402 Payment Required
- Data source temporarily unavailable — may return 503 or similar
- Invalid or expired signature if the NFP release has not yet occurred
- Rate limiting if called too frequently without proper payment
- Network timeout if the oracle backend is under load

## How this service works

US Non-Farm Payrolls — monthly jobs report, most market-moving macro release for USD pairs — Ed25519 signed attestation

## Output

Returns the most recent US Non-Farm Payrolls figure along with an Ed25519-signed attestation payload, enabling downstream consumers to cryptographically verify the authenticity and integrity of the economic data point.

## 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-6611faea/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)
