# contextaiagent.xyz Funding Rate Pattern Signals

> contextaiagent.xyz Funding Rate Pattern Signals is a paid API for AI agents from contextaiagent.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns funding rate pattern signals — including streaks, extremes, and divergences — for crypto perpetual markets

## Facts

- Endpoint: GET https://contextaiagent.xyz/api/percolator/funding/signals
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/contextaiagent-xyz-funding-rate-pattern-signals-759b8038
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IUGu4HU_iUGas9magIs7a

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 contextaiagent-xyz-funding-rate-pattern-signals-759b8038
```

Example prompt: Show me all extreme funding rate signals right now — I want to spot any perpetual markets where funding has hit an extreme reading that might signal a contrarian trade.

## When to prefer this

Choose this endpoint when you need pre-computed, categorized funding rate pattern signals (streaks, extremes, divergences) rather than raw funding rate data. It is ideal for trading agents or monitoring bots that need to act on specific pattern types without performing their own signal detection logic. Prefer this over raw funding APIs when you want ready-to-use signals with classification already applied.

## Known failure modes

- Invalid signal type enum value returns a validation error
- Unknown or unsupported market symbol may return empty results or an error
- Payment failure via x402 protocol results in 402 response and no data
- Service unavailable if underlying funding rate data feed is stale or offline
- Rate limiting if too many requests are made in quick succession

## How this service works

Get funding rate pattern signals (streaks, extremes, divergences)

## Output

A list of funding rate pattern signals for perpetual futures markets, each tagged by signal type (streak, extreme, or divergence), including the relevant market symbol and pattern details that indicate unusual or actionable funding rate behavior.

## 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",
     "properties": {
      "type": {
       "enum": [
        "streak",
        "extreme",
        "divergence"
       ],
       "type": "string",
       "description": "Filter by signal type"
      },
      "market": {
       "type": "string",
       "description": "Filter by market symbol"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/contextaiagent-xyz-funding-rate-pattern-signals-759b8038/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from contextaiagent.xyz](https://www.zero.xyz/host/contextaiagent.xyz/llms.txt)
