# AgentServices Crypto Signals API

> AgentServices Crypto Signals API is a paid API for AI agents from agentservices.to, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns trading signals and market intelligence for a given crypto symbol, paid via x402 micropayments

## Facts

- Endpoint: GET https://agentservices.to/v1/signals/%7Bsymbol%7D
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentservices-crypto-signals-api-49dd7b99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_why13Iqrpwezqo33FhJmv

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 agentservices-crypto-signals-api-49dd7b99
```

Example prompt: Can you pull the latest trading signal for BTC from AgentServices right now so I can decide whether to enter a position?

## When to prefer this

Choose this endpoint when an AI agent needs real-time trading signals for specific crypto tokens and is operating in an x402 micropayment-enabled environment on Base. It is particularly useful for autonomous trading agents, portfolio rebalancing bots, or DeFi strategy executors that need actionable buy/sell/hold signals rather than raw price data. Prefer this over generic market data APIs when you need pre-processed signal intelligence rather than raw OHLCV or orderbook data.

## Known failure modes

- Invalid or unsupported symbol returns 404 or error response
- Insufficient USDC payment via x402 returns 402 Payment Required
- Network or provider downtime returns 503
- Malformed symbol in path parameter causes 400 Bad Request
- Rate limiting if too many requests in a short window

## How this service works

Paid data APIs for AI agents. Crypto market data, DeFi yields, IP geolocation, dispute resolution, marketing intelligence. Powered by x402 micropayments on Base.

## Output

Returns a trading signal for the requested crypto symbol, likely including a directional indicator (e.g. buy/sell/hold or bullish/bearish/neutral), confidence score, and supporting market data points such as price trend or momentum metrics.

## 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": [
      "DELETE",
      "GET",
      "HEAD"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  },
  "routeTemplate": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentservices-crypto-signals-api-49dd7b99/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentservices.to](https://www.zero.xyz/host/agentservices.to/llms.txt)
