{
  "x402Version": 2,
  "id": 539,
  "slug": "539",
  "resource": "https://api.oblique.markets/api/v1/paid/us-equity-snapshot",
  "description": "Use when an agent needs us equity snapshot. Returns Fresh US equity OHLCV snapshot for one ticker and interval with bounded lookback, optional SMA/EMA/RSI indicators, source attribution and freshness evidence; stale or unavailable data is refused without settlement. $0.01.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x970007590aCC5C938cd51345B17AF51B1B40D3Ab",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 60
    },
    {
      "scheme": "exact",
      "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
      "payTo": "GYyTRmt317JafPHXPnM54Fsvsma5GnS9wm6qGMqaykdS",
      "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
      "amount": "10000",
      "maxTimeoutSeconds": 60
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "interval": "1d",
            "lookback": 1,
            "ticker": "AAPL"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "data": [
              {
                "adjusted_close": 230.1,
                "close": 230.1,
                "high": 231.2,
                "low": 227.9,
                "open": 228.5,
                "time": "2026-08-28T00:00:00.000Z",
                "volume": 42100000
              },
              {
                "adjusted_close": 231.7,
                "close": 231.7,
                "high": 232,
                "low": 229.8,
                "open": 230.4,
                "time": "2026-08-29T00:00:00.000Z",
                "volume": 38900000
              }
            ],
            "evidence": {
              "provider": "Yahoo Finance chart API",
              "query": {
                "interval": "1d",
                "ticker": "AAPL"
              },
              "retrieved_at": "2026-08-29T20:00:00.000Z"
            },
            "freshness": {
              "age_seconds": 72000,
              "latest_bar": "2026-08-29T00:00:00.000Z",
              "max_age_seconds": 432000
            },
            "indicators": {
              "sma_20": 225.4
            },
            "interval": "1d",
            "lookback": 2,
            "source": {
              "name": "Yahoo Finance chart API",
              "retrieved_at": "2026-08-29T20:00:00.000Z",
              "url": "https://query1.finance.yahoo.com/v8/finance/chart/AAPL"
            },
            "ticker": "AAPL"
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "indicators": {
                    "items": {
                      "enum": [
                        "sma_20",
                        "ema_20",
                        "rsi_14"
                      ],
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "interval": {
                    "enum": [
                      "1d",
                      "1wk",
                      "1mo"
                    ],
                    "type": "string"
                  },
                  "lookback": {
                    "type": "integer"
                  },
                  "ticker": {
                    "description": "One US-listed ticker, uppercase letters only.",
                    "type": "string"
                  }
                },
                "required": [
                  "ticker",
                  "interval",
                  "lookback"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "data": {
                "items": {
                  "properties": {
                    "adjusted_close": {
                      "type": "number"
                    },
                    "close": {
                      "type": "number"
                    },
                    "high": {
                      "type": "number"
                    },
                    "low": {
                      "type": "number"
                    },
                    "open": {
                      "type": "number"
                    },
                    "time": {
                      "type": "string"
                    },
                    "volume": {
                      "type": "integer"
                    }
                  },
                  "type": "object"
                },
                "type": "array"
              },
              "evidence": {
                "properties": {
                  "provider": {
                    "type": "string"
                  },
                  "query": {
                    "properties": {
                      "interval": {
                        "type": "string"
                      },
                      "ticker": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "retrieved_at": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "freshness": {
                "properties": {
                  "age_seconds": {
                    "type": "integer"
                  },
                  "latest_bar": {
                    "type": "string"
                  },
                  "max_age_seconds": {
                    "type": "integer"
                  }
                },
                "type": "object"
              },
              "indicators": {
                "properties": {
                  "sma_20": {
                    "type": "number"
                  }
                },
                "type": "object"
              },
              "interval": {
                "type": "string"
              },
              "lookback": {
                "type": "integer"
              },
              "source": {
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "retrieved_at": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string"
                  }
                },
                "type": "object"
              },
              "ticker": {
                "type": "string"
              }
            },
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.oblique.markets",
  "lastUpdated": "2026-09-14T06:49:39.59Z",
  "quality": {
    "calls30d": 8,
    "uniquePayers30d": 2,
    "lastCalledAt": "2026-09-14T06:49:39.474Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.oblique.markets",
    "manifest_name": "api.oblique.markets",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}