# Delx Task Priority Score

> Delx Task Priority Score is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-13).

Scores task priority from urgency, impact, and effort inputs into a deterministic ordered band, returning machine-readable JSON

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/task-priority-score
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-task-priority-score-c7902367
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hLC_6uOA-DKLPP-HMZRXl

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 delx-task-priority-score-c7902367 -d '<json body>'
```

Example prompt: Score the priority of a task with urgency 85, impact 70, and effort 40 so I know where to rank it in my agent job queue.

## When to prefer this

Choose this endpoint when you need a fast, deterministic, stateless priority score computed locally with no upstream dependencies — especially useful in multi-step agent pipelines where you want to rank or gate tasks before executing side effects. Prefer it over heavier orchestration tools when you only need a lightweight numeric priority band from urgency, impact, and effort inputs at minimal cost ($0.003 USDC).

## Known failure modes

- Missing required fields (urgency, impact, or effort) return a validation error
- Values outside the 0–100 range may be rejected or clamped
- Non-numeric input types return a type error
- Payment not included or insufficient USDC triggers an x402 payment required response

## How this service works

Score task priority from urgency, impact, and effort into an ordered band — call when ranking agent tasks from urgency, impact, and effort. Use before side effects when composing multi-step agent jobs—the same loyalty/workflow demand band agents already pay for on Bazaar, but fully local. Returns deterministic machine-readable JSON for $0.003 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, and no claim of live ch…

## Output

Returns deterministic machine-readable JSON containing a numeric priority score and an ordered priority band derived from the weighted combination of urgency, impact, and effort inputs. No state is stored and the result is fully reproducible for identical inputs.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "effort": {
   "type": "number",
   "description": "Estimated effort score 0–100 (higher effort lowers priority)."
  },
  "impact": {
   "type": "number",
   "description": "Business/impact score 0–100."
  },
  "urgency": {
   "type": "number",
   "description": "Urgency score 0–100."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 76,
  "effort": 20,
  "impact": 70,
  "schema": "delx/util-task-priority-score/v1",
  "urgency": 80,
  "priority": "p1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-task-priority-score-c7902367/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
