# Orcpin Single-Trade T+1 Settlement Date

> Orcpin Single-Trade T+1 Settlement Date is a paid API for AI agents from orcpin.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns the T+1 settlement date and settled status for a single equity trade given a trade date and an as-of date, using the NYSE holiday calendar under SEC Rule 15c6-1.

## Facts

- Endpoint: GET https://orcpin.dev/v1/settlement-date
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orcpin-single-trade-t-1-settlement-date-64875580
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_chnTmfwKeoKYZ4THOv3xY

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 orcpin-single-trade-t-1-settlement-date-64875580
```

Example prompt: What's the T+1 settlement date for a trade executed on 2025-06-10, and has it settled as of today 2025-06-12?

## When to prefer this

Prefer this endpoint when you need to compute the settlement date for a single trade quickly without constructing a request body — ideal for lightweight, real-time queries in agent pipelines. Choose this over the batch sibling when you have only one trade to resolve, want low-latency lookup, or are building a simple compliance check. It is authoritative on NYSE holiday calendar versioning and explicitly cites SEC Rule 15c6-1, making it suitable for regulated contexts.

## Known failure modes

- Missing required query params (trade_date or as_of) returns a 400 error
- Invalid date format (not YYYY-MM-DD) causes a parse error
- Trade date falling on a weekend or NYSE holiday may return an adjusted settlement date or an error
- Payment failure via x402 returns a 402 status, blocking the response
- Stale or mismatched calendar version may produce unexpected settlement dates around newly declared NYSE holidays

## How this service works

Single-trade T+1 settlement date, as a one-line GET: given a trade date and an as-of date, returns the settlement date and whether it has settled, on the versioned NYSE holiday calendar with SEC Rule 15c6-1 cited. The low-integration sibling of the batch settlement-dates route — no request body. A dates fact, never a violation determination. Nothing is stored.

## Output

A JSON object containing the computed settlement date (YYYY-MM-DD), a boolean indicating whether the trade has settled as of the as-of date, the number of trading days remaining until settlement, the NYSE calendar version used, the SEC Rule 15c6-1 citation, the schema version, and an optional echoed ticker symbol plus a disclaimer.

## 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": [
      "trade_date",
      "as_of"
     ],
     "properties": {
      "as_of": {
       "type": "string",
       "description": "Date to evaluate settled/unsettled against, YYYY-MM-DD."
      },
      "symbol": {
       "type": "string",
       "description": "Optional ticker, echoed back untouched."
      },
      "trade_date": {
       "type": "string",
       "description": "Execution date of the trade, YYYY-MM-DD."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "settled": {
       "type": "boolean"
      },
      "disclaimer": {
       "type": "string"
      },
      "trade_date": {
       "type": "string"
      },
      "rule_citation": {
       "type": "string"
      },
      "schema_version": {
       "type": "string"
      },
      "settlement_date": {
       "type": "string"
      },
      "calendar_version": {
       "type": "string"
      },
      "trading_days_until_settlement": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orcpin-single-trade-t-1-settlement-date-64875580/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orcpin.dev](https://www.zero.xyz/host/orcpin.dev/llms.txt)
