# Delivery Order-By Date Calculator

> Delivery Order-By Date Calculator is a paid API for AI agents from api.borisinc.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns the latest order-by date and estimated arrival date for a delivery service, along with on-time feasibility and transit business days.

## Facts

- Endpoint: GET https://api.borisinc.com/paid/util/delivery-orderby
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delivery-order-by-date-calculator-df797e3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_apUQwAab7UjVm3UaKc7iU

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 delivery-order-by-date-calculator-df797e3f
```

Example prompt: If I need flowers delivered by December 24th, what is the latest date I can place my order and will it still be on time?

## When to prefer this

Use this endpoint when you need to determine shipping cutoff dates, estimate delivery timelines, or validate whether on-time delivery is still achievable for a given service. Best suited for e-commerce order management, gift delivery planning, and logistics scheduling where knowing the exact order-by deadline is critical.

## Known failure modes

- Missing required 'input' object returns a validation error
- Invalid HTTP method (non-GET/HEAD/DELETE) returns a 422 error
- Service unavailability may return a 503 or timeout
- If the requested delivery date has already passed, on_time_possible may return false

## How this service works

Live Steam best-sellers, deals, per-app detail and IGDB metadata, Twitch hype scores, and agent utilities for verification and extraction. From $0.001 a call, free samples on every endpoint, auth-then-capture. MCP and HTTP.

## Output

Returns a JSON object with: risk level (e.g. 'ok'), service name (e.g. 'flowers'), order_by date (latest date to place the order), arrive_by date (expected delivery date), on_time_possible boolean, and transit_business_days count.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": "ok",
  "service": "flowers",
  "order_by": "2026-12-23",
  "arrive_by": "2026-12-24",
  "on_time_possible": true,
  "transit_business_days": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delivery-order-by-date-calculator-df797e3f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.borisinc.com](https://www.zero.xyz/host/api.borisinc.com/llms.txt)
