# Quick Signal TA – Crypto Technical Analysis

> Quick Signal TA – Crypto Technical Analysis is a paid API for AI agents from signal.quickai.build, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns ten technical indicators plus an overall assessment for a given crypto token and timeframe in a single query

## Facts

- Endpoint: GET https://signal.quickai.build/signal
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signal-quickai-build-c96999c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JGcOf2ZueHEerohpe9Ek9

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 signal-quickai-build-c96999c4
```

Example prompt: Run a full technical analysis on SOL using the 4-hour timeframe — I want all ten indicators and an overall bullish or bearish assessment.

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-indicator crypto technical analysis snapshot in a single call rather than querying individual indicators separately. Ideal for trading assistants, crypto bots, or dashboards that need a professional TA summary with an actionable assessment for a specific token and timeframe.

## Known failure modes

- Missing required 'token' query parameter returns an error
- Invalid or unrecognized token symbol returns no data or error
- Invalid timeframe value (not one of 1m, 5m, 15m, 1h, 4h, 1d) returns validation error
- Payment failure or missing x402 payment header returns 402 Payment Required
- Network or upstream data provider unavailable returns 5xx error

## How this service works

Quick Signal TA v3.1.0 — Crypto technical analysis. Ten indicators with natural-language assessments. Query params: token (required), timeframe, bollinger_period, rsi_period.

## Output

A JSON object containing values for ten technical indicators (such as RSI, MACD, moving averages, Bollinger Bands, and others) along with a synthesized assessment summarizing the overall market signal (e.g. bullish, bearish, neutral) for the queried token and timeframe.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "token": "SOL",
   "timeframe": "4h"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Token symbol, name, or contract address"
      },
      "timeframe": {
       "enum": [
        "5m",
        "15m",
        "1h",
        "4h",
        "1d",
        "1w"
       ],
       "type": "string",
       "default": "1d"
      },
      "rsi_period": {
       "type": "integer",
       "default": 14,
       "maximum": 50,
       "minimum": 2
      },
      "bollinger_period": {
       "type": "integer",
       "default": 20,
       "maximum": 100,
       "minimum": 5
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "token",
      "resolved_name",
      "timestamp",
      "price",
      "timeframe",
      "indicators",
      "data_source",
      "notes",
      "cached"
     ],
     "properties": {
      "chain": {
       "type": [
        "string",
        "null"
       ]
      },
      "notes": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "price": {
       "type": "number"
      },
      "token": {
       "type": "string"
      },
      "cached": {
       "type": "boolean"
      },
      "cached_at": {
       "type": [
        "string",
        "null"
       ],
       "format": "date-time"
      },
      "timeframe": {
       "enum": [
        "5m",
        "15m",
        "1h",
        "4h",
        "1d",
        "1w"
       ],
       "type": "string"
      },
      "timestamp": {
       "type": "string",
       "format": "date-time"
      },
      "indicators": {
       "type": "object",
       "required": [
        "bollinger",
        "sma",
        "ema",
        "vwma",
        "rsi",
        "macd",
        "atr",
        "stochastic",
        "fractals",
        "volume"
       ],
       "properties": {
        "atr": 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signal-quickai-build-c96999c4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signal.quickai.build](https://www.zero.xyz/host/signal.quickai.build/llms.txt)
