# ScriptMasterLabs FTD Time Series API

> ScriptMasterLabs FTD Time Series API is a paid API for AI agents from mcp-x402-discovery.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves a time series of Failure-to-Deliver (FTD) data for a given equity ticker symbol, paid per call via x402 crypto micropayments.

## Facts

- Endpoint: GET https://mcp-x402-discovery.onrender.com/x402/ftd-time-series
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scriptmasterlabs-ftd-time-series-api-bcfdf431
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oVEUbdbEF3FrnbXrSteYt

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 scriptmasterlabs-ftd-time-series-api-bcfdf431
```

Example prompt: Pull the last 90 days of failure-to-deliver time series data for GME — I want to see the FTD trend for that ticker.

## When to prefer this

Choose this endpoint when you need Failure-to-Deliver time series data for a specific US equity ticker and want pay-per-call access via crypto micropayments (USDC on Base) without a subscription. Ideal for on-demand FTD research, compliance checks, or quant signal generation where you need historical FTD records up to 180 data points deep.

## Known failure modes

- 402 Payment Required if x402 payment header or valid API key is not provided
- Invalid or unknown ticker symbol returns an error or empty dataset
- limit parameter out of range (below 1 or above 180) causes validation failure
- Network or upstream data provider unavailability causes 5xx errors
- Ticker with no FTD history may return an empty time series

## How this service works

Pay-per-call crypto, RWA, federal, SEC, Section 8/HUD housing, and compliance APIs via x402. Primary: USDC on Base (eip155:8453). Also accepts Global Dollar (USDG) on Robinhood Chain (eip155:4663) via sovereign X-PAYMENT-TX. Hyphen routes only (e.g. /x402/gas-tracker, /x402/pha-lookup, /x402/sec-8k). MARKETPLACE REVIEW: use free /x402/playground/* (no key, no payment). Production /x402/* returns 402 unless paid via x402 or X-Api-Market-Key / X-API-Key from seller dashboard.

## Output

A time series array of Failure-to-Deliver (FTD) records for the requested equity ticker, covering up to the specified number of periods (default 90, max 180). Each record likely includes the date and FTD count/value for that period, sourced from SEC compliance data.

## 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": {
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 90,
       "maximum": 180,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Equity ticker."
      }
     }
    }
   }
  },
  "output": {
   "properties": {
    "example": {}
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scriptmasterlabs-ftd-time-series-api-bcfdf431/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcp-x402-discovery.onrender.com](https://www.zero.xyz/host/mcp-x402-discovery.onrender.com/llms.txt)
