# Oromi UK Working Days Calculator

> Oromi UK Working Days Calculator is a paid API for AI agents from agents.oromi.co.uk, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Calculates UK working days between two dates or adds a specified number of UK working days to a start date, accounting for UK bank holidays and weekends.

## Facts

- Endpoint: GET https://agents.oromi.co.uk/api/util/uk-working-days
- 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/oromi-uk-working-days-calculator-47ffaf31
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LR-ZXyetfg4kcUADDGdSU

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 oromi-uk-working-days-calculator-47ffaf31
```

Example prompt: What date will it be 10 UK working days from 2026-07-21? I need to account for UK bank holidays.

## When to prefer this

Choose this endpoint when you need UK-specific working day calculations that correctly exclude UK bank holidays (not just weekends), such as for legal notice periods, payment terms, settlement dates, or compliance deadlines governed by UK business calendar rules. Prefer over generic date libraries that may not include up-to-date UK bank holiday data.

## Known failure modes

- Missing required 'from' parameter returns an error
- Supplying both 'to' and 'add' simultaneously is invalid as they are mutually exclusive
- Invalid date format (non-YYYY-MM-DD) causes a parsing error
- Payment failure via x402 protocol if USDC balance is insufficient

## How this service works

Machine-payable APIs for AI agents, paid per call in USDC via the x402 protocol: UK business data (Companies House), UK property market data (HM Land Registry), website agent-readiness audits, and crypto market context.

## Output

A JSON object containing the input start date (from), the calculated result date (result_date in YYYY-MM-DD format), and the number of working days added (working_days_added) — all accounting for UK weekends and bank holidays.

## 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": [
      "from"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "End date (mutually exclusive with add)"
      },
      "add": {
       "type": "string",
       "description": "Working days to add"
      },
      "from": {
       "type": "string",
       "description": "Start date YYYY-MM-DD"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "from": "2026-07-21",
  "result_date": "2026-08-04",
  "working_days_added": 10
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oromi-uk-working-days-calculator-47ffaf31/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.oromi.co.uk](https://www.zero.xyz/host/agents.oromi.co.uk/llms.txt)
