# AGISHub Webhook Status Checker

> AGISHub Webhook Status Checker is a paid API for AI agents from api.agishub.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the current delivery status (queued, retrying, delivered, or failed) of a webhook job by its job_id.

## Facts

- Endpoint: POST https://api.agishub.com/paid/webhook-status
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agishub-webhook-status-checker-961b73a6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_724_bRqUu7ctVVStDzfL7

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 agishub-webhook-status-checker-961b73a6 -d '<json body>'
```

Example prompt: What's the current delivery status of my webhook job with ID wh_abc123? I want to know if it was delivered, is still queued, retrying, or failed.

## When to prefer this

Use this endpoint when you have already submitted a webhook relay job via AGISHub and need to poll its delivery state. It is the appropriate follow-up call after initiating an async webhook dispatch, allowing agents to confirm delivery before proceeding with downstream steps or to diagnose delivery failures.

## Known failure modes

- Invalid or nonexistent job_id returns an error or empty result
- Job ID from a different system not recognized
- Network timeout returning no status
- Rate limiting or payment failure ($0.01 USDC) causing 402 error

## How this service works

Check the delivery status of a webhook job (queued / retrying / delivered / failed) by its job_id.

## Output

A JSON object indicating the current state of the webhook job, including its status (queued, retrying, delivered, or failed), and potentially timestamps or retry counts depending on the response schema.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "additionalProperties": false,
   "properties": {
    "type": {
     "type": "string",
     "enum": [
      "http"
     ]
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "job_id": {
       "type": "string",
       "description": "The job_id returned by webhook_relay."
      }
     },
     "required": [
      "job_id"
     ],
     "additionalProperties": false
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ]
  },
  "output": {
   "type": "object",
   "additionalProperties": false,
   "properties": {
    "type": {
     "type": "string",
     "enum": [
      "json"
     ]
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "example"
   ]
  }
 },
 "required": [
  "input",
  "output"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agishub-webhook-status-checker-961b73a6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agishub.com](https://www.zero.xyz/host/api.agishub.com/llms.txt)
