mirrored listing x402 eip155:8453solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp

QuantOracle: /v1/risk/full-analysis

QuantOracle: /v1/risk/full-analysis

Do you run api.quantoracle.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
40000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated

Provider

api.quantoracle.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xC94f5F33ae446a50Ce31157db81253BfddFE2af6",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "40000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "9biztrXscReJ3Wi8EfkD2gL3WXzYUmzTEohD26Bxp39u",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "40000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "returns": [
            1,
            1,
            1,
            1,
            1,
            1,
            1,
            1,
            1,
            1
          ]
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "properties": {
                "equity_curve": {
                  "anyOf": [
                    {
                      "items": {
                        "type": "number"
                      },
                      "maxItems": 5000,
                      "type": "array"
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "description": "Equity curve (optional, derived from returns if omitted)",
                  "title": "Equity Curve"
                },
                "portfolio_value": {
                  "default": 100000,
                  "description": "Current portfolio value",
                  "exclusiveMinimum": 0,
                  "title": "Portfolio Value",
                  "type": "number"
                },
                "returns": {
                  "description": "Daily returns series (max 5000)",
                  "items": {
                    "type": "number"
                  },
                  "maxItems": 5000,
                  "minItems": 10,
                  "title": "Returns",
                  "type": "array"
                },
                "risk_free_rate": {
                  "default": 0.05,
                  "description": "Annual risk-free rate",
                  "title": "Risk Free Rate",
                  "type": "number"
                }
              },
              "required": [
                "returns"
              ],
              "title": "FullAnalysisIn",
              "type": "object"
            },
            "bodyType": {
              "enum": [
                "json",
                "form-data",
                "text"
              ],
              "type": "string"
            },
            "method": {
              "enum": [
                "POST"
              ],
              "type": "string"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method",
            "bodyType",
            "body"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.quantoracle.dev/v1/risk/full-analysis"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.quantoracle.dev/v1/risk/full-analysis");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.quantoracle.dev/v1/risk/full-analysis")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/15652.json, and this resource appears in /discovery/resources and /discovery/search.