# Gold-SAP XAUUSD Trading Signal

> Gold-SAP XAUUSD Trading Signal is a paid API for AI agents from gold-sap.com, paid per call via x402, $0.049/call, status unknown (last checked 2026-09-15).

Returns a directional trading signal (long/short/neutral) with entry price, stop-loss, and take-profit levels for the XAUUSD (gold vs USD) pair

## Facts

- Endpoint: GET https://gold-sap.com/api/v1/gold/signal
- Price: $0.049/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gold-sap-xauusd-trading-signal-6b64367a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qORfQxbEKB-3AzP_Xy5Ua

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 gold-sap-xauusd-trading-signal-6b64367a
```

Example prompt: What's the current XAUUSD trading signal — should I go long, short, or stay neutral on gold right now, and what entry price, stop-loss, and take-profit levels are recommended?

## When to prefer this

Choose this endpoint when you need a ready-made, low-cost XAUUSD directional signal with concrete entry/SL/TP parameters for automated trading bots, alert systems, or decision-support tools. It is ideal for agents that need to act on gold price movement without performing their own technical analysis, and for workflows that must stay lightweight at $0.03 per signal call.

## Known failure modes

- Payment not processed or insufficient USDC balance — 402 Payment Required
- Market data unavailable or signal engine offline — 503 Service Unavailable
- Malformed request or unsupported HTTP method — 400 Bad Request
- Rate limiting if called too frequently — 429 Too Many Requests

## How this service works

Gold XAUUSD trading signal with direction, entry price, stop loss and take profit targets

## Output

A structured trading signal for XAUUSD containing: directional bias (long, short, or neutral), recommended entry price, stop-loss (SL) level, and take-profit (TP) level, enabling automated or manual trade execution decisions.

## 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",
      "HEAD",
      "DELETE"
     ],
     "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/gold-sap-xauusd-trading-signal-6b64367a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gold-sap.com](https://www.zero.xyz/host/gold-sap.com/llms.txt)
