{
  "generated_at": "2026-05-11T00:56:48.476130+00:00",
  "slug": "x402-anyspend-com-api-taapi",
  "title": "X402 \u00b7 Taapi",
  "url": "https://x402.anyspend.com/api/taapi",
  "category": "finance",
  "summary": "X402 \u00b7 Taapi \u2014 x402-protected finance API. Pay $0.150 per call on base. Indexed by x402all.",
  "seo": {
    "title": "X402 \u00b7 Taapi \u2014 x402 finance API \u00b7 $0.150 per call",
    "description": "X402 \u00b7 Taapi \u2014 x402-protected finance API. Pay $0.150 per call on base. Indexed by x402all."
  },
  "use_cases": [],
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "expensive",
    "ratio": 5.0,
    "median_category_atomic": 30000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "stale",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x1e8e93cb91778e5b1a3639706789195a838960f8",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "150000",
      "max_timeout_seconds": 120,
      "mime_type": "application/json",
      "description": "200+ technical indicators (RSI, MACD, Bollinger Bands, Fibonacci, etc.) for cryptocurrency trading. Price: $0.00015 USDC per request",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "bodyType": "json",
          "bodyFields": {
            "url": {
              "type": "string",
              "required": true,
              "description": "Taapi indicator endpoint (e.g., 'rsi', 'macd', 'bbands'). See all indicators at https://taapi.io/indicators/"
            },
            "params": {
              "type": "object",
              "required": false,
              "description": "Query parameters as key-value pairs. Example: {\"exchange\":\"binance\",\"symbol\":\"BTC/USDT\",\"interval\":\"1h\"}"
            }
          },
          "headerFields": {
            "X-PAYMENT": {
              "type": "string",
              "required": false,
              "description": "Base64-encoded JSON PaymentPayload; automatically filled by x402scan"
            },
            "Content-Type": {
              "type": "string",
              "required": true,
              "description": "Must be 'application/json'"
            }
          }
        },
        "output": {
          "data": "object",
          "meta": {
            "cached": "boolean",
            "source": "string",
            "latency": "number",
            "endpoint": "string",
            "timestamp": "string"
          }
        }
      }
    },
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0x1E8E93CB91778E5B1a3639706789195a838960F8",
      "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",
    "host": "x402.anyspend.com",
    "url": "https://x402.anyspend.com"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/x402-anyspend-com-api-taapi",
    "url": "https://x402all.com/resource/x402-anyspend-com-api-taapi",
    "name": "X402 \u00b7 Taapi",
    "@type": "WebAPI",
    "offers": [
      {
        "url": "https://x402all.com/resource/x402-anyspend-com-api-taapi",
        "@type": "Offer",
        "price": "0.15",
        "availability": "https://schema.org/InStock",
        "priceCurrency": "USDC",
        "additionalProperty": [
          {
            "name": "paymentNetwork",
            "@type": "PropertyValue",
            "value": "base"
          },
          {
            "name": "paymentAsset",
            "@type": "PropertyValue",
            "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
          }
        ],
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "0.150000",
          "unitText": "call",
          "priceCurrency": "USDC"
        },
        "eligibleCustomerType": "Agent"
      },
      {
        "url": "https://x402all.com/resource/x402-anyspend-com-api-taapi",
        "@type": "Offer",
        "price": "0.00015",
        "availability": "https://schema.org/InStock",
        "priceCurrency": "USDC",
        "additionalProperty": [
          {
            "name": "paymentNetwork",
            "@type": "PropertyValue",
            "value": "base"
          },
          {
            "name": "paymentAsset",
            "@type": "PropertyValue",
            "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
          }
        ],
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "0.000150",
          "unitText": "call",
          "priceCurrency": "USDC"
        },
        "eligibleCustomerType": "Agent"
      }
    ],
    "sameAs": "https://x402.anyspend.com/api/taapi",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/x402-anyspend-com",
      "url": "https://x402.anyspend.com",
      "name": "x402.anyspend.com",
      "@type": "Organization"
    },
    "identifier": "x402-anyspend-com-api-taapi",
    "description": "X402 \u00b7 Taapi \u2014 x402-protected finance API. Pay $0.150 per call on base. Indexed by x402all.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=x402-anyspend-com-api-taapi",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "finance"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=x402-anyspend-com-api-taapi",
  "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:06:24.988276+00:00",
    "warnings": []
  },
  "contract": {
    "route_template": "https://x402.anyspend.com/api/taapi",
    "content_type": "application/json",
    "response_schema": {
      "data": "object",
      "meta": {
        "cached": "boolean",
        "source": "string",
        "latency": "number",
        "endpoint": "string",
        "timestamp": "string"
      }
    },
    "examples": [],
    "schema_presence": {
      "path_schema": "unknown",
      "query_schema": "unknown",
      "header_schema": "unknown",
      "request_body_schema": "unknown",
      "response_schema": "partial"
    },
    "contract_hash": "0d8a617461913825a031c465adf2745541ccb718ed48656560046ae9bf8ef625"
  }
}