{
  "generated_at": "2026-05-11T00:56:48.476130+00:00",
  "slug": "x402-anyspend-com-api-taapi-3",
  "title": "x402.anyspend.com \u00b7 /api/taapi",
  "url": "http://x402.anyspend.com/api/taapi",
  "category": "other",
  "summary": "x402-anyspend-com-api-taapi-3 \u2014 x402-protected other API",
  "seo": {
    "title": "x402.anyspend.com \u00b7 /api/taapi",
    "description": "x402-anyspend-com-api-taapi-3 \u2014 x402-protected other API"
  },
  "use_cases": [],
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "unknown",
    "median_category_atomic": 0
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "stale",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x5211178726767075169a009671E72dF0fED8DC0F",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "150",
      "max_timeout_seconds": 120,
      "mime_type": "application/json",
      "description": "TAAPI - 200+ technical indicators for crypto trading. Supports single indicator or bulk mode (up to 20 indicators in one request).",
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "discoverable": true
        },
        "output": {
          "input": {
            "type": "http",
            "method": "POST",
            "bodyType": "json",
            "examples": [
              {
                "name": "Single Mode - RSI",
                "value": {
                  "url": "rsi",
                  "params": {
                    "symbol": "BTC/USDT",
                    "exchange": "binance",
                    "interval": "1h"
                  }
                }
              },
              {
                "name": "Bulk Mode - Multiple Indicators",
                "value": {
                  "mode": "bulk",
                  "params": {
                    "symbol": "BTC/USDT",
                    "exchange": "binance",
                    "interval": "1h",
                    "indicators": [
                      {
                        "id": "rsi",
                        "indicator": "rsi"
                      },
                      {
                        "id": "macd",
                        "indicator": "macd"
                      },
                      {
                        "id": "bbands",
                        "indicator": "bbands"
                      }
                    ]
                  }
                }
              },
              {
                "name": "Bulk Mode - Multiple Assets",
                "value": {
                  "mode": "bulk",
                  "params": {
                    "constructs": [
                      {
                        "symbol": "BTC/USDT",
                        "exchange": "binance",
                        "interval": "1h",
                        "indicators": [
                          {
                            "id": "btc_rsi",
                            "indicator": "rsi"
                          }
                        ]
                      },
                      {
                        "symbol": "ETH/USDT",
                        "exchange": "binance",
                        "interval": "4h",
                        "indicators": [
                          {
                            "id": "eth_rsi",
                            "indicator": "rsi"
                          }
                        ]
                      }
                    ]
                  }
                }
              }
            ],
            "bodyFields": {
              "url": {
                "enum": [
                  "rsi",
                  "macd",
                  "bbands",
                  "ema",
                  "sma",
                  "stochrsi",
                  "atr",
                  "adx",
                  "cci",
                  "obv",
                  "vwap",
                  "stoch",
                  "dmi",
                  "supertrend",
                  "ichimoku"
                ],
                "type": "string",
                "required": false,
                "description": "Indicator name for single mode (e.g., 'rsi', 'macd', 'bbands'). Not needed for bulk mode."
              },
              "mode": {
                "enum": [
                  "single",
                  "bulk"
                ],
                "type": "string",
                "default": "single",
                "required": false,
                "description": "Request mode: 'single' (default) for one indicator, 'bulk' for up to 20 indicators"
              },
              "params": {
                "type": "object",
                "required": true,
                "properties": {
                  "period": {
                    "type": "integer",
                    "required": false,
                    "description": "Indicator period (single mode only)"
                  },
                  "symbol": {
                    "type": "string",
                    "required": true,
                    "description": "Trading pair (e.g., 'BTC/USDT', 'ETH/USDT')"
                  },
                  "exchange": {
                    "enum": [
                      "binance",
                      "binancefutures",
                      "bybit",
                      "coinbase",
                      "bitstamp",
                      "kraken",
                      "gateio",
                      "okx"
                    ],
                    "type": "string",
                    "required": true,
                    "description": "Exchange name"
                  },
                  "interval": {
                    "enum": [
                      "1m",
                      "5m",
                      "15m",
                      "30m",
                      "1h",
                      "2h",
                      "4h",
                      "12h",
                      "1d",
                      "1w"
                    ],
                    "type": "string",
                    "required": true,
                    "description": "Candle interval"
                  },
                  "constructs": {
                    "type": "array",
                    "required": false,
                    "description": "Multiple constructs for bulk mode (different symbols/timeframes). Each: {exchange, symbol, interval, indicators[]}"
                  },
                  "indicators": {
                    "type": "array",
                    "required": false,
                    "description": "Array of indicators for bulk mode. Each: {id?, indicator, period?, backtrack?}"
                  }
                },
                "description": "Parameters vary by mode. Single mode: {exchange, symbol, interval, period?}. Bulk mode: {exchange, symbol, interval, indicators[]} or {constructs[]}"
              }
            },
            "discoverable": true,
            "headerFields": {
              "X-PAYMENT": {
                "type": "string",
                "required": false,
                "description": "Base64-encoded JSON PaymentPayload; automatically filled by x402 clients"
              },
              "Content-Type": {
                "type": "string",
                "default": "application/json",
                "required": true,
                "description": "Must be 'application/json'"
              }
            }
          },
          "output": {
            "type": "object",
            "examples": [
              {
                "name": "Single Mode Response",
                "value": {
                  "data": {
                    "value": 58.34
                  },
                  "meta": {
                    "source": "taapi",
                    "latency": 234,
                    "endpoint": "rsi"
                  },
                  "success": true
                }
              },
              {
                "name": "Bulk Mode Response",
                "value": {
                  "data": {
                    "data": [
                      {
                        "id": "rsi",
                        "errors": [],
                        "result": {
                          "value": 48.95
                        },
                        "indicator": "rsi"
                      },
                      {
                        "id": "macd",
                        "errors": [],
                        "result": {
                          "valueMACD": 221.78,
                          "valueMACDHist": -76.25,
                          "valueMACDSignal": 298.03
                        },
                        "indicator": "macd"
                      }
                    ]
                  },
                  "meta": {
                    "source": "taapi",
                    "latency": 456,
                    "endpoint": "bulk"
                  },
                  "success": true
                }
              }
            ],
            "properties": {
              "data": {
                "type": "object",
                "description": "Single mode: indicator values. Bulk mode: {data: [{id, indicator, result, errors}]}"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "string"
                  },
                  "latency": {
                    "type": "number"
                  },
                  "endpoint": {
                    "type": "string"
                  }
                }
              },
              "success": {
                "type": "boolean"
              }
            },
            "description": "Indicator result with metadata. Bulk mode returns array of results."
          },
          "metadata": {
            "name": "TAAPI Technical Analysis",
            "tags": [
              "trading",
              "indicators",
              "crypto",
              "rsi",
              "macd",
              "bollinger-bands",
              "bulk"
            ],
            "category": "technical-analysis",
            "features": [
              "200+ indicators",
              "real-time data",
              "multiple exchanges",
              "bulk mode (up to 20 indicators)",
              "multi-asset analysis"
            ],
            "provider": "Taapi.io",
            "documentation": "https://taapi.io/indicators/"
          }
        }
      }
    }
  ],
  "origin": {
    "slug": "x402-anyspend-com-2",
    "host": "x402.anyspend.com",
    "url": "http://x402.anyspend.com"
  },
  "json_ld": {
    "@context": "https://schema.org",
    "@type": "WebAPI",
    "@id": "https://x402all.com/resource/x402-anyspend-com-api-taapi-3",
    "name": "x402.anyspend.com \u00b7 /api/taapi",
    "description": "x402-anyspend-com-api-taapi-3 \u2014 x402-protected other API",
    "url": "https://x402all.com/resource/x402-anyspend-com-api-taapi-3",
    "sameAs": "http://x402.anyspend.com/api/taapi",
    "applicationCategory": "other",
    "identifier": "x402-anyspend-com-api-taapi-3",
    "provider": {
      "@type": "Organization",
      "@id": "https://x402all.com/server/x402-anyspend-com-2",
      "name": "x402.anyspend.com",
      "url": "http://x402.anyspend.com"
    },
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=x402-anyspend-com-api-taapi-3",
      "description": "Test-buy this endpoint on AXON"
    },
    "offers": {
      "@type": "Offer",
      "price": "0.00015",
      "priceCurrency": "USDC",
      "availability": "https://schema.org/InStock",
      "eligibleCustomerType": "Agent",
      "url": "https://x402all.com/resource/x402-anyspend-com-api-taapi-3",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.000150",
        "priceCurrency": "USDC",
        "unitText": "call"
      },
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    }
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=x402-anyspend-com-api-taapi-3",
  "callability": {
    "status": "partial",
    "schema_callability": 0.282,
    "source": "facilitator_bazaar",
    "source_confidence": 0.75,
    "match_confidence": 0.4,
    "schema_confidence": 0.2,
    "validated_at": "2026-05-10T12:05:53.033080+00:00",
    "warnings": []
  },
  "contract": {
    "route_template": "http://x402.anyspend.com/api/taapi",
    "content_type": "application/json",
    "response_schema": {
      "input": {
        "type": "http",
        "method": "POST",
        "bodyType": "json",
        "examples": [
          {
            "name": "Single Mode - RSI",
            "value": {
              "url": "rsi",
              "params": {
                "symbol": "BTC/USDT",
                "exchange": "binance",
                "interval": "1h"
              }
            }
          },
          {
            "name": "Bulk Mode - Multiple Indicators",
            "value": {
              "mode": "bulk",
              "params": {
                "symbol": "BTC/USDT",
                "exchange": "binance",
                "interval": "1h",
                "indicators": [
                  {
                    "id": "rsi",
                    "indicator": "rsi"
                  },
                  {
                    "id": "macd",
                    "indicator": "macd"
                  },
                  {
                    "id": "bbands",
                    "indicator": "bbands"
                  }
                ]
              }
            }
          },
          {
            "name": "Bulk Mode - Multiple Assets",
            "value": {
              "mode": "bulk",
              "params": {
                "constructs": [
                  {
                    "symbol": "BTC/USDT",
                    "exchange": "binance",
                    "interval": "1h",
                    "indicators": [
                      {
                        "id": "btc_rsi",
                        "indicator": "rsi"
                      }
                    ]
                  },
                  {
                    "symbol": "ETH/USDT",
                    "exchange": "binance",
                    "interval": "4h",
                    "indicators": [
                      {
                        "id": "eth_rsi",
                        "indicator": "rsi"
                      }
                    ]
                  }
                ]
              }
            }
          }
        ],
        "bodyFields": {
          "url": {
            "enum": [
              "rsi",
              "macd",
              "bbands",
              "ema",
              "sma",
              "stochrsi",
              "atr",
              "adx",
              "cci",
              "obv",
              "vwap",
              "stoch",
              "dmi",
              "supertrend",
              "ichimoku"
            ],
            "type": "string",
            "required": false,
            "description": "Indicator name for single mode (e.g., 'rsi', 'macd', 'bbands'). Not needed for bulk mode."
          },
          "mode": {
            "enum": [
              "single",
              "bulk"
            ],
            "type": "string",
            "default": "single",
            "required": false,
            "description": "Request mode: 'single' (default) for one indicator, 'bulk' for up to 20 indicators"
          },
          "params": {
            "type": "object",
            "required": true,
            "properties": {
              "period": {
                "type": "integer",
                "required": false,
                "description": "Indicator period (single mode only)"
              },
              "symbol": {
                "type": "string",
                "required": true,
                "description": "Trading pair (e.g., 'BTC/USDT', 'ETH/USDT')"
              },
              "exchange": {
                "enum": [
                  "binance",
                  "binancefutures",
                  "bybit",
                  "coinbase",
                  "bitstamp",
                  "kraken",
                  "gateio",
                  "okx"
                ],
                "type": "string",
                "required": true,
                "description": "Exchange name"
              },
              "interval": {
                "enum": [
                  "1m",
                  "5m",
                  "15m",
                  "30m",
                  "1h",
                  "2h",
                  "4h",
                  "12h",
                  "1d",
                  "1w"
                ],
                "type": "string",
                "required": true,
                "description": "Candle interval"
              },
              "constructs": {
                "type": "array",
                "required": false,
                "description": "Multiple constructs for bulk mode (different symbols/timeframes). Each: {exchange, symbol, interval, indicators[]}"
              },
              "indicators": {
                "type": "array",
                "required": false,
                "description": "Array of indicators for bulk mode. Each: {id?, indicator, period?, backtrack?}"
              }
            },
            "description": "Parameters vary by mode. Single mode: {exchange, symbol, interval, period?}. Bulk mode: {exchange, symbol, interval, indicators[]} or {constructs[]}"
          }
        },
        "discoverable": true,
        "headerFields": {
          "X-PAYMENT": {
            "type": "string",
            "required": false,
            "description": "Base64-encoded JSON PaymentPayload; automatically filled by x402 clients"
          },
          "Content-Type": {
            "type": "string",
            "default": "application/json",
            "required": true,
            "description": "Must be 'application/json'"
          }
        }
      },
      "output": {
        "type": "object",
        "examples": [
          {
            "name": "Single Mode Response",
            "value": {
              "data": {
                "value": 58.34
              },
              "meta": {
                "source": "taapi",
                "latency": 234,
                "endpoint": "rsi"
              },
              "success": true
            }
          },
          {
            "name": "Bulk Mode Response",
            "value": {
              "data": {
                "data": [
                  {
                    "id": "rsi",
                    "errors": [],
                    "result": {
                      "value": 48.95
                    },
                    "indicator": "rsi"
                  },
                  {
                    "id": "macd",
                    "errors": [],
                    "result": {
                      "valueMACD": 221.78,
                      "valueMACDHist": -76.25,
                      "valueMACDSignal": 298.03
                    },
                    "indicator": "macd"
                  }
                ]
              },
              "meta": {
                "source": "taapi",
                "latency": 456,
                "endpoint": "bulk"
              },
              "success": true
            }
          }
        ],
        "properties": {
          "data": {
            "type": "object",
            "description": "Single mode: indicator values. Bulk mode: {data: [{id, indicator, result, errors}]}"
          },
          "meta": {
            "type": "object",
            "properties": {
              "source": {
                "type": "string"
              },
              "latency": {
                "type": "number"
              },
              "endpoint": {
                "type": "string"
              }
            }
          },
          "success": {
            "type": "boolean"
          }
        },
        "description": "Indicator result with metadata. Bulk mode returns array of results."
      },
      "metadata": {
        "name": "TAAPI Technical Analysis",
        "tags": [
          "trading",
          "indicators",
          "crypto",
          "rsi",
          "macd",
          "bollinger-bands",
          "bulk"
        ],
        "category": "technical-analysis",
        "features": [
          "200+ indicators",
          "real-time data",
          "multiple exchanges",
          "bulk mode (up to 20 indicators)",
          "multi-asset analysis"
        ],
        "provider": "Taapi.io",
        "documentation": "https://taapi.io/indicators/"
      }
    },
    "examples": [],
    "schema_presence": {
      "path_schema": "unknown",
      "query_schema": "unknown",
      "header_schema": "unknown",
      "request_body_schema": "unknown",
      "response_schema": "partial"
    },
    "contract_hash": "4f9f21e6a115bd7eb6d7f9a307fe275fc64b67bfe0458f750b42fc3a8b69d140"
  }
}