# AgentUtil Context Check

> AgentUtil Context Check is a paid API for AI agents from context.agentutil.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Checks timezone, holidays, business calendar, and platform status for a given date, country, and platform before taking an action like sending email, deploying code, or running campaigns

## Facts

- Endpoint: POST https://context.agentutil.net/v1/check
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/context-agentutil-net-ffcf5faa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8QVKoqCq3yqE4z3C0n9gx

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 context-agentutil-net-ffcf5faa -d '<json body>'
```

Example prompt: Before I send this marketing email campaign targeting customers in New Zealand, check whether today — December 25 — is a good time to send it, given NZ holidays and business hours in the Pacific/Auckland timezone.

## When to prefer this

Use this endpoint when an AI agent needs to decide whether it is contextually appropriate to take an action — particularly time-sensitive ones like sending emails, deploying code, or running campaigns — and needs to cross-check timezone, national holidays across 11 countries, business calendar, and live platform status in a single call rather than calling separate APIs.

## Known failure modes

- Unsupported country code returns an error or empty holiday data
- Unknown platform name may return no status data
- Invalid IANA timezone string causes a validation error
- Malformed ISO 8601 date returns a parsing error
- Platform status APIs being unreachable may return stale or unavailable status
- Missing required fields like country or timezone may produce incomplete results

## How this service works

Should I take this action right now? Checks timezone, holidays, business calendar, and platform status across 11 countries before sending emails, deploying code, or running campaigns

## Output

Returns a contextual assessment indicating whether the action is appropriate to take right now, including timezone info, whether today is a holiday or outside business hours in the target country, and current operational status of any specified platform (e.g. GitHub, AWS, Stripe).

## Example request

```json
{
 "date": "2024-12-25",
 "action": "send_email",
 "country": "NZ",
 "platform": "sendgrid",
 "timezone": "Pacific/Auckland",
 "description": "Marketing email campaign to customers in New Zealand"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "ISO 8601 date to check (defaults to today)"
  },
  "action": {
   "type": "string",
   "description": "Action being considered (e.g. send_email, deploy, schedule_meeting)"
  },
  "country": {
   "type": "string",
   "description": "ISO 3166-1 alpha-2 country code (e.g. NZ, US, GB)"
  },
  "platform": {
   "type": "string",
   "description": "Platform to check status for (e.g. github, aws, stripe)"
  },
  "timezone": {
   "type": "string",
   "description": "IANA timezone (e.g. America/New_York, Pacific/Auckland)"
  },
  "description": {
   "type": "string",
   "description": "Natural language description of the intended action"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/context-agentutil-net-ffcf5faa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from context.agentutil.net](https://www.zero.xyz/host/context.agentutil.net/llms.txt)
